Spooky Detector

Plays a spooky song when spookiness on page is detected

ما هو Spooky Detector؟

Spooky Detector هو إضافة Chrome تم تطويرها بواسطة AetherUnbound، والميزة الرئيسية لها هي "Plays a spooky song when spookiness on page is detected".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Spooky Detector

قم بتنزيل ملفات الامتداد Spooky Detector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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!                    

معلومات أساسية عن التمديد

الاسم Spooky Detector Spooky Detector
ID hpnfbfalcaencofajgfffojcjokmakmc
عنوان URL الرسمي https://chrome.google.com/webstore/detail/spooky-detector/hpnfbfalcaencofajgfffojcjokmakmc
الوصف Plays a spooky song when spookiness on page is detected
حجم الملف 2.07 MB
عدد التثبيتات 588
النسخة الحالية 1.0.5
آخر تحديث 2016-12-19
تاريخ النشر 2016-12-19
تقييم 4.90/5 مجموع تقييمات 10
المطور AetherUnbound
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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\/",
        ""
    ]
}