Letterblockd

Block Letterboxd users that you don't want to see reviews from

Cos'è Letterblockd?

Letterblockd è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Block Letterboxd users that you don't want to see reviews from".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Letterblockd

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

                        If you don't want to see content by some user on Letterboxd, then just add them to the list in the options.                    

Informazioni di Base sull'Estensione

Nome Letterblockd Letterblockd
ID dkjlmnilbamfppblfkhdmdlonfbodpkf
URL Ufficiale https://chromewebstore.google.com/detail/letterblockd/dkjlmnilbamfppblfkhdmdlonfbodpkf
Descrizione Block Letterboxd users that you don't want to see reviews from
Dimensione del File 19.3 KB
Conteggio Installazioni 49
Versione Corrente 0.0.0.1
Ultimo Aggiornamento 2020-05-25
Data di Pubblicazione 2020-05-25
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.0.0.1",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_ui": {
        "page": "pages\/options.html",
        "browser-style": false,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/letterboxd.com\/*",
                "https:\/\/letterboxd.com\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}