Google News No Top Stories

Removes Top Stories from Google News

Co to jest Google News No Top Stories?

Google News No Top Stories to rozszerzenie Chrome opracowane przez robnield, a jego główną funkcją jest „Removes Top Stories from Google News”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google News No Top Stories

Pobierz pliki rozszerzeń Google News No Top Stories w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Google News No Top Stories Google News No Top Stories
ID oikdcblndphhmpmillphjmdpgkghcolc
Oficjalny URL https://chrome.google.com/webstore/detail/google-news-no-top-storie/oikdcblndphhmpmillphjmdpgkghcolc
Opis Removes Top Stories from Google News
Rozmiar pliku 35.21 KB
Liczba instalacji 32
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-08-17
Data Publikacji 2016-08-17
Ocena 2.63/5 Łącznie 8 Oceny
Deweloper robnield
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}