Spoiler Block

This extension will black out divs based on specific keywords

Was ist Spoiler Block?

Spoiler Block ist eine Chrome-Erweiterung, die von millionhari entwickelt wurde, und ihr Hauptmerkmal ist "This extension will black out divs based on specific keywords".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Spoiler Block-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spoiler Block-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Spoiler Block Spoiler Block
ID eicnikdpfimhiogckamkklnpligkifhm
Offizielle URL https://chromewebstore.google.com/detail/spoiler-block/eicnikdpfimhiogckamkklnpligkifhm
Beschreibung This extension will black out divs based on specific keywords
Dateigröße 15.07 KB
Installationsanzahl 290
Aktuelle Version 1.0.2
Letztes Update 2016-05-07
Veröffentlichungsdatum 2016-05-06
Bewertung 3.50/5 Insgesamt 2 Bewertungen
Entwickler millionhari
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}