Week
Week displays an icon with the current week number in the chrome toolbar
O que é Week?
Week é uma extensão do Chrome desenvolvida por Urban Björkman, e sua principal característica é "Week displays an icon with the current week number in the chrome toolbar".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Week
Baixe arquivos de extensão Week no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Displays current week number as an extension icon in Chrome toolbar get the source on github https://github.com/UrbanBjorkman/Week-Chrome-Extension
Informações Básicas da Extensão
Nome | Week |
ID | kjkhipoiijminfemfjeaccjonihcgfni |
URL Oficial | https://chromewebstore.google.com/detail/week/kjkhipoiijminfemfjeaccjonihcgfni |
Descrição | Week displays an icon with the current week number in the chrome toolbar |
Tamanho do Arquivo | 1.19 MB |
Contagem de Instalações | 34 |
Versão Atual | 0.5 |
Última Atualização | 2014-10-21 |
Data de Publicação | 2014-10-21 |
Classificação | 2.67/5 Total de 3 Avaliações |
Desenvolvedor | Urban Björkman |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/UrbanBjorkman/Week-Chrome-Extension |
URL da Página de Ajuda | https://github.com/UrbanBjorkman/Week-Chrome-Extension |
Idiomas Suportados | 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" } } |