Week
Week displays an icon with the current week number in the chrome toolbar
Cos'è Week?
Week è un'estensione di Chrome sviluppata da Urban Björkman, e la sua funzione principale è "Week displays an icon with the current week number in the chrome toolbar".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Week
Scarica i file di estensione Week in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Displays current week number as an extension icon in Chrome toolbar get the source on github https://github.com/UrbanBjorkman/Week-Chrome-Extension
Informazioni di Base sull'Estensione
Nome | Week |
ID | kjkhipoiijminfemfjeaccjonihcgfni |
URL Ufficiale | https://chromewebstore.google.com/detail/week/kjkhipoiijminfemfjeaccjonihcgfni |
Descrizione | Week displays an icon with the current week number in the chrome toolbar |
Dimensione del File | 1.19 MB |
Conteggio Installazioni | 34 |
Versione Corrente | 0.5 |
Ultimo Aggiornamento | 2014-10-21 |
Data di Pubblicazione | 2014-10-21 |
Valutazione | 2.67/5 Totale 3 Valutazioni |
Sviluppatore | Urban Björkman |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/UrbanBjorkman/Week-Chrome-Extension |
URL della Pagina di Aiuto | https://github.com/UrbanBjorkman/Week-Chrome-Extension |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "jquery-2.1.1.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery-2.1.1.min.js", "week.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Week displays an icon with the current week number in the chrome toolbar", "manifest_version": 2, "name": "Week", "short_name": "Week", "version": "0.5", "icons": { "128": "images\/logo128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Week", "default_popup": "week.html" } } |