Spoiler Blocker

Blocks spoilers on your Facebook and Twitter feed.

Spoiler Blocker क्या है?

Spoiler Blocker spoiler.blocker.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blocks spoilers on your Facebook and Twitter feed."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Spoiler Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Spoiler Blocker Spoiler Blocker
ID ehjbmpkpiidfmlcaialacajddfkpepdo
आधिकारिक URL https://chrome.google.com/webstore/detail/spoiler-blocker/ehjbmpkpiidfmlcaialacajddfkpepdo
विवरण Blocks spoilers on your Facebook and Twitter feed.
फ़ाइल का आकार 804 KB
स्थापना संख्या 33
वर्तमान संस्करण 0.2.3
अंतिम अपडेट 2017-01-17
प्रकाशन तिथि 2017-01-17
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर spoiler.blocker.dev
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://spoilerblocker.herokuapp.com/
सहायता पृष्ठ URL https://github.com/kabir-plod/spoiler-blocker
समर्थित भाषाएँ 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"
        }
    ]
}