Week
Week displays an icon with the current week number in the chrome toolbar
What is Week?
Week is a Chrome extension developed by Urban Björkman, and its main feature is "Week displays an icon with the current week number in the chrome toolbar".
Extension Screenshots
Download Week Extension CRX File
Download Week extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Displays current week number as an extension icon in Chrome toolbar
get the source on github
https://github.com/UrbanBjorkman/Week-Chrome-Extension Extension Basic Information
| Name | |
| ID | kjkhipoiijminfemfjeaccjonihcgfni |
| Official URL | https://chromewebstore.google.com/detail/week/kjkhipoiijminfemfjeaccjonihcgfni |
| Description | Week displays an icon with the current week number in the chrome toolbar |
| File Size | 1.19 MB |
| Installation Count | 34 |
| Current Version | 0.5 |
| Last Updated | 2014-10-21 |
| Publish Date | 2014-10-21 |
| Rating | 2.67/5 Total 3 Ratings |
| Developer | Urban Björkman |
| Payment Type | free |
| Extension Website | https://github.com/UrbanBjorkman/Week-Chrome-Extension |
| Help Page URL | https://github.com/UrbanBjorkman/Week-Chrome-Extension |
| Supported Languages | 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"
}
} | |