Bug

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

Bug là gì?

Bug là một tiện ích mở rộng Chrome được phát triển bởi bugextension, và tính năng chính của nó là "Adds very realistic animated bugs (spiders and/or flies) to your chrome browser.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bug

Tải xuống các tệp mở rộng Bug dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bug Bug
ID ekbjjckppofeioffpmilicifcmcfjpnh
URL Chính Thức https://chromewebstore.google.com/detail/bug/ekbjjckppofeioffpmilicifcmcfjpnh
Mô tả Adds very realistic animated bugs (spiders and/or flies) to your chrome browser.
Kích Thước Tệp 62.49 KB
Số Lần Cài Đặt 162
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-11-01
Ngày Phát Hành 2018-10-25
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển bugextension
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://auz.github.io/Bug/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}