Icon Changer
Chrome Extension to dynamically change the toolbar icon image.
Qu'est-ce que Icon Changer ?
Icon Changer est une extension Chrome développée par ikeiwumene, et sa fonction principale est "Chrome Extension to dynamically change the toolbar icon image.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Icon Changer
Téléchargez les fichiers d'extension Icon Changer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This chrome extension changes its toolbar icon image every 60 seconds. It demonstrates the ability to change the icon displayed.
Informations de Base sur l'Extension
Nom | |
ID | gchflnohlhkocmeicoeminnbfediifag |
URL Officiel | https://chrome.google.com/webstore/detail/icon-changer/gchflnohlhkocmeicoeminnbfediifag |
Description | Chrome Extension to dynamically change the toolbar icon image. |
Taille du Fichier | 80.05 KB |
Nombre d'Installations | 57 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2021-06-10 |
Date de Publication | 2021-02-03 |
Développeur | ikeiwumene |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Icon Changer", "description": "Chrome Extension to dynamically change the toolbar icon image.", "version": "0.1.1", "manifest_version": 2, "browser_action": { "default_icon": "images\/icon128.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/lib\/jquery.min.js", "js\/lib\/oAuth.js", "js\/lib\/sha1.js", "js\/lib\/twitter.js", "js\/background.js" ], "persistent": false }, "permissions": [ "storage", "alarms", "tabs", "notifications", "https:\/\/servedby.revive-adserver.net\/*", "https:\/\/d1kphapjj0aw84.cloudfront.net\/*", "https:\/\/api.twitter.com\/*", "http:\/\/vividiov.online\/*", "http:\/\/vividiov.com\/*", "https:\/\/vivid-media-test.herokuapp.com\/" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "web_accessible_resources": [ "images\/icon48.png" ], "content_security_policy": "script-src 'self'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/www.vividiov.com\/*" ], "js": [ "js\/session.js" ] } ] } |