Spoiler Block

This extension will black out divs based on specific keywords

Qu'est-ce que Spoiler Block ?

Spoiler Block est une extension Chrome développée par millionhari, et sa fonction principale est "This extension will black out divs based on specific keywords".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Spoiler Block

Téléchargez les fichiers d'extension Spoiler Block au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Browse the internet free of spoilers! The Spoiler Block extension will censor any keyword match with a black blob instead of blocking the whole page. Click the Spoiler Block icon to get started.

Upcoming features:
- Community driven packages
- Anagram block

What's new in v.1.0.2
- Fixed bug to run script when page is altered in any way                    

Informations de Base sur l'Extension

Nom Spoiler Block Spoiler Block
ID eicnikdpfimhiogckamkklnpligkifhm
URL Officiel https://chromewebstore.google.com/detail/spoiler-block/eicnikdpfimhiogckamkklnpligkifhm
Description This extension will black out divs based on specific keywords
Taille du Fichier 15.07 KB
Nombre d'Installations 290
Version Actuelle 1.0.2
Dernière Mise à Jour 2016-05-07
Date de Publication 2016-05-06
Évaluation 3.50/5 Total 2 Évaluations
Développeur millionhari
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Michael Hari",
    "name": "Spoiler Block",
    "description": "This extension will black out divs based on specific keywords",
    "version": "1.0.2",
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_page": "\/options\/spoiler_block_options.html",
    "background": {
        "scripts": [
            "\/backgroundpage\/background.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Spoiler Block"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "\/styles\/style.css"
            ],
            "js": [
                "\/scripts\/app.js"
            ]
        }
    ]
}