News filter

Hide unwanted news from pages, based on forbidden words

Cos'è News filter?

News filter è un'estensione di Chrome sviluppata da softwareamman, e la sua funzione principale è "Hide unwanted news from pages, based on forbidden words".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione News filter

Scarica i file di estensione News filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Hide unwanted news from pages, based on forbidden words. Enter the words you want to block, words are entered in lowercase letters in the format first|second|third                    

Informazioni di Base sull'Estensione

Nome News filter News filter
ID mehaipijahdeeiooaebccpedpeelbjeh
URL Ufficiale https://chromewebstore.google.com/detail/news-filter/mehaipijahdeeiooaebccpedpeelbjeh
Descrizione Hide unwanted news from pages, based on forbidden words
Dimensione del File 8.31 KB
Conteggio Installazioni 154
Versione Corrente 1.0
Ultimo Aggiornamento 2022-06-26
Data di Pubblicazione 2020-07-28
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore softwareamman
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "News filter",
    "version": "1.0",
    "description": "Hide unwanted news from pages, based on forbidden words",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "background.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "32": "images\/news_filter_32.png",
            "48": "images\/news_filter_48.png",
            "128": "images\/news_filter_128.png"
        }
    },
    "icons": {
        "32": "images\/news_filter_32.png",
        "48": "images\/news_filter_48.png",
        "128": "images\/news_filter_128.png"
    },
    "manifest_version": 2
}