Google News No Top Stories

Removes Top Stories from Google News

Google News No Top Storiesとは何ですか?

Google News No Top Storiesはrobnieldによって開発されたChromeの拡張機能で、その主な機能は「Removes Top Stories from Google News」です。

拡張機能のスクリーンショット

screenshot

Google News No Top Stories拡張機能のCRXファイルをダウンロード

Google News No Top Stories拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Simple extension to remove Google New's Top Stories section.                    

拡張機能の基本情報

名前 Google News No Top Stories Google News No Top Stories
ID oikdcblndphhmpmillphjmdpgkghcolc
公式URL https://chrome.google.com/webstore/detail/google-news-no-top-storie/oikdcblndphhmpmillphjmdpgkghcolc
説明 Removes Top Stories from Google News
ファイルサイズ 35.21 KB
インストール数 32
現在のバージョン 1.1
最終更新日 2016-08-17
公開日 2016-08-17
評価 2.63/5 合計 8 レビュー
開発者 robnield
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google News No Top Stories",
    "description": "Removes Top Stories from Google News",
    "version": "1.1",
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Remove Google News Top Stories"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.google.com\/*",
                "http:\/\/news.google.com\/*"
            ],
            "js": [
                "google_cs.js",
                "jquery.min.js"
            ],
            "css": [
                "google_cs.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/news.google.com\/*",
        "https:\/\/news.google.com\/*"
    ]
}