Day Counter
Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.
Day Counterคืออะไร?
Day Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Josh และคุณลักษณะหลักของมันคือ "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Day Counter
ดาวน์โหลดไฟล์ส่วนขยาย Day Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
It shows the number of days since a specified date in the toolbar. It is kind of like a timer/stopwatch but just for the days between dates. Good for when you're trying to break a habit, and you want to see how many days you have gone (ie. looking at facebook while working). This also syncs between browsers, you know what I mean. Like you can be in one browser, and then get on another computer and login to chrome, and the date will sync, so you don't have to keep it updated. Like it saves it on the internet, so it can be accessed anywhere, you know? Like it's something that helps you manage stuff between computers and stuff, get it?
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Day Counter |
ID | glnbjmdjpcccpdlckpenknmacmgbecpa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/day-counter/glnbjmdjpcccpdlckpenknmacmgbecpa |
คำอธิบาย | Displays the number of days since a given date in the toolbar. Right click icon->Options to change date. |
ขนาดไฟล์ | 21.39 KB |
จำนวนการติดตั้ง | 3,258 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2013-05-21 |
วันที่เผยแพร่ | 2013-05-21 |
คะแนน | 4.35/5 รวมทั้งหมด 54 คะแนน |
ผู้พัฒนา | Josh |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "page": "background.html" }, "content_scripts": [ { "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "browser_action": { "default_icon": "icon16.png" }, "permissions": [ "storage" ], "options_page": "options.html", "incognito": "split", "manifest_version": 2, "name": "Day Counter", "version": "1.0.1" } |