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 擴展基本資訊
| 名稱 | |
| ID | noogdbofibkpjbipamihpfenckclpahj |
| 官方網址 | 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"
]
} | |