Bug

Adds very realistic animated bugs (spiders and/or flies) to your chrome browser.

Bugとは何ですか?

Bugはbugextensionによって開発されたChromeの拡張機能で、その主な機能は「Adds very realistic animated bugs (spiders and/or flies) to your chrome browser.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Bug拡張機能のCRXファイルをダウンロード

Bug拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A small extension which adds realistic animated bugs to your browser. Has modes for spiders and flies (or both). Option to only show the bugs on a percentage of pages viewed.                    

拡張機能の基本情報

名前 Bug Bug
ID ekbjjckppofeioffpmilicifcmcfjpnh
公式URL https://chromewebstore.google.com/detail/bug/ekbjjckppofeioffpmilicifcmcfjpnh
説明 Adds very realistic animated bugs (spiders and/or flies) to your chrome browser.
ファイルサイズ 62.49 KB
インストール数 162
現在のバージョン 1.0
最終更新日 2018-11-01
公開日 2018-10-25
評価 4.50/5 合計 2 レビュー
開発者 bugextension
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://auz.github.io/Bug/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bug",
    "short_name": "Bug",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Adds very realistic animated bugs (spiders and\/or flies) to your chrome browser.",
    "homepage_url": "https:\/\/auz.github.io\/Bug\/",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "bug.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "bug-icon-16.png",
        "48": "bug-icon-48.png",
        "128": "bug-icon-128.png"
    }
}