BazQux Notifier
Displays the number of unread items from BazQux.com
什么是BazQux Notifier?
BazQux Notifier是由kosz开发的Chrome扩展程序,该扩展的主要功能是“Displays the number of unread items from BazQux.com”。
扩展截图
下载BazQux Notifier扩展crx文件
下载BazQux Notifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension displays the number of unread items from BazQux.com in toolbar button.
Install the extension and log in to https://bazqux.com if needed. You will get unread count on the icon's badge. Click the button to open BazQux Reader site in a new tab. 扩展基本信息
| 名称 | |
| ID | fgoenlfbfnofepaodjepdhkoepoogedb |
| 官方URL | https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb |
| 简介 | Displays the number of unread items from BazQux.com |
| 文件大小 | 20.6 KB |
| 安装次数 | 71 |
| 当前版本 | 1.2 |
| 更新时间 | 2013-07-03 |
| 上架时间 | 2013-07-03 |
| 评分 | 5.00/5 共7次评分 |
| 开发者 | kosz |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "BazQux Notifier",
"description": "Displays the number of unread items from BazQux.com",
"version": "1.2",
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icons\/icon-19.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/bazqux.com\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"alarms",
"tabs",
"https:\/\/bazqux.com\/"
]
} | |