Spooky Detector

Plays a spooky song when spookiness on page is detected

什么是Spooky Detector?

Spooky Detector是由AetherUnbound开发的Chrome扩展程序,该扩展的主要功能是“Plays a spooky song when spookiness on page is detected”。

扩展截图

screenshot
screenshot

下载Spooky Detector扩展crx文件

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