Bug

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

Bug क्या है?

Bug bugextension द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds very realistic animated bugs (spiders and/or flies) to your chrome browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bug एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}