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
Eメール [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\/",
        ""
    ]
}