Spooky Detector

Plays a spooky song when spookiness on page is detected

Wat is Spooky Detector?

Spooky Detector is een Chrome-extensie ontwikkeld door AetherUnbound, en de belangrijkste functie is "Plays a spooky song when spookiness on page is detected".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Spooky Detector

Download Spooky Detector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Spooky Detector Spooky Detector
ID hpnfbfalcaencofajgfffojcjokmakmc
Officiële URL https://chrome.google.com/webstore/detail/spooky-detector/hpnfbfalcaencofajgfffojcjokmakmc
Beschrijving Plays a spooky song when spookiness on page is detected
Bestandsgrootte 2.07 MB
Aantal Installaties 588
Huidige Versie 1.0.5
Laatst Bijgewerkt 2016-12-19
Publicatiedatum 2016-12-19
Beoordeling 4.90/5 Totaal 10 Beoordelingen
Ontwikkelaar AetherUnbound
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/",
        ""
    ]
}