Favicon counter for Google+
Displays the current number of new (unread) posts in the Google+ stream on the favicon of the Google+ tab.
什么是Favicon counter for Google+?
Favicon counter for Google+是由https://kupriyanov.com开发的Chrome扩展程序,该扩展的主要功能是“Displays the current number of new (unread) posts in the Google+ stream on the favicon of the Google+ tab.”。
扩展截图
下载Favicon counter for Google+扩展crx文件
下载Favicon counter for Google+扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Keep an eye on the Google+ stream and never miss another breaking news in again, even while browsing in other tabs. v0.0.20: added new icon
扩展基本信息
名称 | Favicon counter for Google+ |
ID | noogdbofibkpjbipamihpfenckclpahj |
官方URL | https://chromewebstore.google.com/detail/favicon-counter-for-googl/noogdbofibkpjbipamihpfenckclpahj |
简介 | Displays the current number of new (unread) posts in the Google+ stream on the favicon of the Google+ tab. |
文件大小 | 172 KB |
安装次数 | 10 |
当前版本 | 0.0.20 |
更新时间 | 2015-09-19 |
上架时间 | 2015-09-19 |
评分 | 5.00/5 共2次评分 |
开发者 | https://kupriyanov.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://google.com/+MishaMKupriyanov |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.20", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "48": "images\/icon-48.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/plus.google.com\/*", "https:\/\/plus.google.com\/*" ], "css": [ "styles\/main.css" ], "js": [ "scripts\/GPlusCounter.js", "bower_components\/mkfavcount\/favcount.js", "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "tabs", "http:\/\/plus.google.com\/*", "https:\/\/plus.google.com\/*" ], "content_security_policy": "script-src 'self' https:\/\/plus.google.com https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "\/images\/faviconr3.ico" ] } |