Spooky Detector

Plays a spooky song when spookiness on page is detected

Co je Spooky Detector?

Spooky Detector je rozšíření Chrome vyvinuté AetherUnbound, a jeho hlavní funkcí je „Plays a spooky song when spookiness on page is detected“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Spooky Detector

Stáhněte si soubory rozšíření Spooky Detector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Spooky Detector Spooky Detector
ID hpnfbfalcaencofajgfffojcjokmakmc
Oficiální URL https://chrome.google.com/webstore/detail/spooky-detector/hpnfbfalcaencofajgfffojcjokmakmc
Popis Plays a spooky song when spookiness on page is detected
Velikost souboru 2.07 MB
Počet instalací 588
Aktuální Verze 1.0.5
Poslední Aktualizace 2016-12-19
Datum Vydání 2016-12-19
Hodnocení 4.90/5 Celkem 10 Hodnocení
Vývojář AetherUnbound
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/",
        ""
    ]
}