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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}