Bug

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

Bugคืออะไร?

Bug เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bugextension และคุณลักษณะหลักของมันคือ "Adds very realistic animated bugs (spiders and/or flies) to your chrome browser."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bug

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}