Bug

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

Cos'è Bug?

Bug è un'estensione di Chrome sviluppata da bugextension, e la sua funzione principale è "Adds very realistic animated bugs (spiders and/or flies) to your chrome browser.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Bug

Scarica i file di estensione Bug in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Bug Bug
ID ekbjjckppofeioffpmilicifcmcfjpnh
URL Ufficiale https://chromewebstore.google.com/detail/bug/ekbjjckppofeioffpmilicifcmcfjpnh
Descrizione Adds very realistic animated bugs (spiders and/or flies) to your chrome browser.
Dimensione del File 62.49 KB
Conteggio Installazioni 162
Versione Corrente 1.0
Ultimo Aggiornamento 2018-11-01
Data di Pubblicazione 2018-10-25
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore bugextension
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://auz.github.io/Bug/
Lingue Supportate 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"
    }
}