Spooky Detector

Plays a spooky song when spookiness on page is detected

Co to jest Spooky Detector?

Spooky Detector to rozszerzenie Chrome opracowane przez AetherUnbound, a jego główną funkcją jest „Plays a spooky song when spookiness on page is detected”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Spooky Detector

Pobierz pliki rozszerzeń Spooky Detector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Spooky Detector Spooky Detector
ID hpnfbfalcaencofajgfffojcjokmakmc
Oficjalny URL https://chrome.google.com/webstore/detail/spooky-detector/hpnfbfalcaencofajgfffojcjokmakmc
Opis Plays a spooky song when spookiness on page is detected
Rozmiar pliku 2.07 MB
Liczba instalacji 588
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2016-12-19
Data Publikacji 2016-12-19
Ocena 4.90/5 Łącznie 10 Oceny
Deweloper AetherUnbound
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/",
        ""
    ]
}