Favicon counter for Google+
Displays the current number of new (unread) posts in the Google+ stream on the favicon of the Google+ tab.
¿Qué es Favicon counter for Google+?
Favicon counter for Google+ es una extensión de Chrome desarrollada por https://kupriyanov.com, y su función principal es "Displays the current number of new (unread) posts in the Google+ stream on the favicon of the Google+ tab.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Favicon counter for Google+
Descarga archivos de extensión Favicon counter for Google+ en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Favicon counter for Google+ |
ID | noogdbofibkpjbipamihpfenckclpahj |
URL Oficial | https://chromewebstore.google.com/detail/favicon-counter-for-googl/noogdbofibkpjbipamihpfenckclpahj |
Descripción | Displays the current number of new (unread) posts in the Google+ stream on the favicon of the Google+ tab. |
Tamaño del Archivo | 172 KB |
Cantidad de Instalaciones | 10 |
Versión Actual | 0.0.20 |
Última Actualización | 2015-09-19 |
Fecha de Publicación | 2015-09-19 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://kupriyanov.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://google.com/+MishaMKupriyanov |
Idiomas Soportados | 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" ] } |