Favicon counter for Google+
Displays the current number of new (unread) posts in the Google+ stream on the favicon of the Google+ tab.
Was ist Favicon counter for Google+?
Favicon counter for Google+ ist eine Chrome-Erweiterung, die von https://kupriyanov.com entwickelt wurde, und ihr Hauptmerkmal ist "Displays the current number of new (unread) posts in the Google+ stream on the favicon of the Google+ tab.".
Erweiterungsscreenshots
Favicon counter for Google+-Erweiterungs-CRX-Datei herunterladen
Laden Sie Favicon counter for Google+-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Favicon counter for Google+ |
ID | noogdbofibkpjbipamihpfenckclpahj |
Offizielle URL | https://chromewebstore.google.com/detail/favicon-counter-for-googl/noogdbofibkpjbipamihpfenckclpahj |
Beschreibung | Displays the current number of new (unread) posts in the Google+ stream on the favicon of the Google+ tab. |
Dateigröße | 172 KB |
Installationsanzahl | 10 |
Aktuelle Version | 0.0.20 |
Letztes Update | 2015-09-19 |
Veröffentlichungsdatum | 2015-09-19 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://kupriyanov.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://google.com/+MishaMKupriyanov |
Unterstützte Sprachen | 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" ] } |