Spoiler Block

This extension will black out divs based on specific keywords

Spoiler Block क्या है?

Spoiler Block millionhari द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will black out divs based on specific keywords"।

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

screenshot
screenshot
screenshot

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

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

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

                        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                    

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

नाम Spoiler Block Spoiler Block
ID eicnikdpfimhiogckamkklnpligkifhm
आधिकारिक URL https://chromewebstore.google.com/detail/spoiler-block/eicnikdpfimhiogckamkklnpligkifhm
विवरण This extension will black out divs based on specific keywords
फ़ाइल का आकार 15.07 KB
स्थापना संख्या 290
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2016-05-07
प्रकाशन तिथि 2016-05-06
रेटिंग 3.50/5 कुल 2 रेटिंग्स
डेवलपर millionhari
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
            ]
        }
    ]
}