Blockr

A simple, lightweight post blocking solution for Tumblr

Cos'è Blockr?

Blockr è un'estensione di Chrome sviluppata da Elizabeth Harper, e la sua funzione principale è "A simple, lightweight post blocking solution for Tumblr".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Blockr

Scarica i file di estensione Blockr 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

                        Blockr is a post blocker for the popular blogging site Tumblr.  This extension adds a small button to each post which blocks the post from your dashboard. Posts are blocked based on their root post ID so the post will be hidden no matter who reblogs it.

The block button is located at the top right of each post so users can block offensive or unwanted content without having to scroll through the entirety of a post.                    

Informazioni di Base sull'Estensione

Nome Blockr Blockr
ID hnaljgbbcjabdcibeliipmcifmfeionc
URL Ufficiale https://chromewebstore.google.com/detail/blockr/hnaljgbbcjabdcibeliipmcifmfeionc
Descrizione A simple, lightweight post blocking solution for Tumblr
Dimensione del File 24.03 KB
Conteggio Installazioni 28
Versione Corrente 1.1.1
Ultimo Aggiornamento 2017-05-01
Data di Pubblicazione 2017-05-01
Valutazione 4.25/5 Totale 4 Valutazioni
Sviluppatore Elizabeth Harper
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/EllieFops/blockr
URL della Pagina di Aiuto https://github.com/EllieFops/blockr/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blockr",
    "description": "A simple, lightweight post blocking solution for Tumblr",
    "version": "1.1.1",
    "author": {
        "name": "Elizabeth Harper",
        "email": "[email protected]",
        "url": "https:\/\/github.com\/EllieFops"
    },
    "incognito": "not_allowed",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tumblr.com\/dashboard"
            ],
            "css": [
                "css\/blockr.css"
            ],
            "js": [
                "js\/blockr.js"
            ]
        }
    ],
    "icons": {
        "16": "res\/16.png",
        "32": "res\/32.png",
        "48": "res\/48.png",
        "128": "res\/128.png"
    }
}