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