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.”。
擴展截圖
下載Bug擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | ekbjjckppofeioffpmilicifcmcfjpnh |
| 官方網址 | 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"
}
} | |