Week
Week displays an icon with the current week number in the chrome toolbar
Weekคืออะไร?
Week เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Urban Björkman และคุณลักษณะหลักของมันคือ "Week displays an icon with the current week number in the chrome toolbar"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Week
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |