Spoiler Blocker

Blocks spoilers on your Facebook and Twitter feed.

Qu'est-ce que Spoiler Blocker ?

Spoiler Blocker est une extension Chrome développée par spoiler.blocker.dev, et sa fonction principale est "Blocks spoilers on your Facebook and Twitter feed.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension Spoiler Blocker 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

                        Say goodbye to spoilers ruining your favourite TV show or movie. The Spoiler Blocker extension hides posts containing keywords for shows you're watching.

Block 'em all
* Define lists of keywords, and posts containing any of these keywords will be hidden
* Choose whether you want to overlay posts with a white panel or remove them completely
* Deactivate lists if already you've finished watching the latest episode

Share with others
* Visit http://spoilerblocker.herokuapp.com/ to share lists with others
* Use download IDs from the website to efficiently get lists into your extension                    

Informations de Base sur l'Extension

Nom Spoiler Blocker Spoiler Blocker
ID ehjbmpkpiidfmlcaialacajddfkpepdo
URL Officiel https://chrome.google.com/webstore/detail/spoiler-blocker/ehjbmpkpiidfmlcaialacajddfkpepdo
Description Blocks spoilers on your Facebook and Twitter feed.
Taille du Fichier 804 KB
Nombre d'Installations 33
Version Actuelle 0.2.3
Dernière Mise à Jour 2017-01-17
Date de Publication 2017-01-17
Évaluation 1.00/5 Total 1 Évaluations
Développeur spoiler.blocker.dev
Type de Paiement free
Site Web de l'Extension http://spoilerblocker.herokuapp.com/
URL de la Page d'Aide https://github.com/kabir-plod/spoiler-blocker
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spoiler Blocker",
    "description": "Blocks spoilers on your Facebook and Twitter feed.",
    "version": "0.2.3",
    "browser_action": {
        "default_title": "Spoiler Blocker",
        "default_icon": {
            "16": "img\/icon16.png",
            "32": "img\/icon32.png"
        },
        "default_popup": "panel.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "64": "img\/icon64.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/spoilerblocker.herokuapp.com\/downloadList\/*"
    ],
    "background": {
        "page": "bg.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/facebook.com\/*"
            ],
            "js": [
                "fb.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "tw.js"
            ],
            "run_at": "document_start"
        }
    ]
}