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 |
公式URL | 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" } } |