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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/",
        ""
    ]
}