Week
Week displays an icon with the current week number in the chrome toolbar
什麼是Week?
Week是由Urban Björkman開發的Chrome擴展程式,該擴展的主要功能是“Week displays an icon with the current week number in the chrome toolbar”。
擴展截圖
下載Week擴展crx文件
下載Week擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Displays current week number as an extension icon in Chrome toolbar get the source on github https://github.com/UrbanBjorkman/Week-Chrome-Extension
擴展基本資訊
名稱 | Week |
ID | kjkhipoiijminfemfjeaccjonihcgfni |
官方網址 | https://chromewebstore.google.com/detail/week/kjkhipoiijminfemfjeaccjonihcgfni |
簡介 | Week displays an icon with the current week number in the chrome toolbar |
檔案大小 | 1.19 MB |
安裝次數 | 34 |
目前版本 | 0.5 |
更新時間 | 2014-10-21 |
上架時間 | 2014-10-21 |
評分 | 2.67/5 共 3 次評分 |
開發者 | Urban Björkman |
付費類型 | free |
擴展官網 | https://github.com/UrbanBjorkman/Week-Chrome-Extension |
說明頁面URL | https://github.com/UrbanBjorkman/Week-Chrome-Extension |
支援的語言 | 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" } } |