Spooky Detector

Plays a spooky song when spookiness on page is detected

Spooky Detector क्या है?

Spooky Detector AetherUnbound द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Plays a spooky song when spookiness on page is detected"।

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

screenshot
screenshot

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

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

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

                        The Spooky Detector is designed to alert you if something spooky appears on the page you are viewing! The detector will notify you about the detected spookiness by playing a spooky song. The volume of the song will depend on how many spooks are found on the page ....so be ware! If you visit a very spooky page, you might be in for a loud surprise!                    

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

नाम Spooky Detector Spooky Detector
ID hpnfbfalcaencofajgfffojcjokmakmc
आधिकारिक URL https://chrome.google.com/webstore/detail/spooky-detector/hpnfbfalcaencofajgfffojcjokmakmc
विवरण Plays a spooky song when spookiness on page is detected
फ़ाइल का आकार 2.07 MB
स्थापना संख्या 588
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2016-12-19
प्रकाशन तिथि 2016-12-19
रेटिंग 4.90/5 कुल 10 रेटिंग्स
डेवलपर AetherUnbound
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spooky Detector",
    "description": "Plays a spooky song when spookiness on page is detected",
    "version": "1.0.5",
    "browser_action": {
        "default_icon": "skull128.png",
        "default_popup": "popup.html",
        "default_title": "Spooky Detector Active"
    },
    "icons": {
        "16": "skull16.png",
        "32": "skull32.png",
        "48": "skull48.png",
        "128": "skull128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "https:\/\/ajax.googleapis.com\/",
        ""
    ]
}