Spooky Detector

Plays a spooky song when spookiness on page is detected

Cos'è Spooky Detector?

Spooky Detector è un'estensione di Chrome sviluppata da AetherUnbound, e la sua funzione principale è "Plays a spooky song when spookiness on page is detected".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Spooky Detector

Scarica i file di estensione Spooky Detector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Spooky Detector Spooky Detector
ID hpnfbfalcaencofajgfffojcjokmakmc
URL Ufficiale https://chrome.google.com/webstore/detail/spooky-detector/hpnfbfalcaencofajgfffojcjokmakmc
Descrizione Plays a spooky song when spookiness on page is detected
Dimensione del File 2.07 MB
Conteggio Installazioni 588
Versione Corrente 1.0.5
Ultimo Aggiornamento 2016-12-19
Data di Pubblicazione 2016-12-19
Valutazione 4.90/5 Totale 10 Valutazioni
Sviluppatore AetherUnbound
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/",
        ""
    ]
}