Spooky Detector

Plays a spooky song when spookiness on page is detected

Apa itu Spooky Detector?

Spooky Detector adalah ekstensi Chrome yang dikembangkan oleh AetherUnbound, dan fitur utamanya adalah "Plays a spooky song when spookiness on page is detected".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Spooky Detector

Unduh file ekstensi Spooky Detector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Spooky Detector Spooky Detector
ID hpnfbfalcaencofajgfffojcjokmakmc
URL Resmi https://chrome.google.com/webstore/detail/spooky-detector/hpnfbfalcaencofajgfffojcjokmakmc
Deskripsi Plays a spooky song when spookiness on page is detected
Ukuran File 2.07 MB
Jumlah Instalasi 588
Versi Saat Ini 1.0.5
Terakhir Diperbarui 2016-12-19
Tanggal Publikasi 2016-12-19
Penilaian 4.90/5 Total 10 Penilaian
Pengembang AetherUnbound
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/",
        ""
    ]
}