HashTag Block on Facebook

Hides posts with #hashtags on Facebook

Cos'è HashTag Block on Facebook?

HashTag Block on Facebook è un'estensione di Chrome sviluppata da Lalit Indoria, e la sua funzione principale è "Hides posts with #hashtags on Facebook".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione HashTag Block on Facebook

Scarica i file di estensione HashTag Block on Facebook 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

                        This extension just hides posts with #hashtags on Facebook. You can specify the minimum number of hashtags to look for when hiding a post.                    

Informazioni di Base sull'Estensione

Nome HashTag Block on Facebook HashTag Block on Facebook
ID nonbihbgikohdfmmnohplldonnjhfdbm
URL Ufficiale https://chrome.google.com/webstore/detail/hashtag-block-on-facebook/nonbihbgikohdfmmnohplldonnjhfdbm
Descrizione Hides posts with #hashtags on Facebook
Dimensione del File 62.59 KB
Conteggio Installazioni 24
Versione Corrente 1.1
Ultimo Aggiornamento 2016-02-03
Data di Pubblicazione 2016-02-03
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Lalit Indoria
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HashTag Block on Facebook",
    "description": "Hides posts with #hashtags on Facebook",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "jquery.js",
                "hashtagblock.js"
            ]
        }
    ]
}