WakaTime Addon
Removes limit of viewing history in WakaTime
WakaTime Addonคืออะไร?
WakaTime Addon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย always.prog และคุณลักษณะหลักของมันคือ "Removes limit of viewing history in WakaTime"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WakaTime Addon
ดาวน์โหลดไฟล์ส่วนขยาย WakaTime Addon ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
For non-premium users of WakaTime, there is a limitation on viewing their analytics - they can only view the data for the last 2 weeks. This extension removes this limitation. To use it, simply install the extension and refresh the WakaTime dashboard page.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | WakaTime Addon |
ID | najcldbmeoakbejeapljkfhnmkieibdk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/wakatime-addon/najcldbmeoakbejeapljkfhnmkieibdk |
คำอธิบาย | Removes limit of viewing history in WakaTime |
ขนาดไฟล์ | 4.62 KB |
จำนวนการติดตั้ง | 21 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2023-03-09 |
วันที่เผยแพร่ | 2023-03-09 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | always.prog |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Always-prog/wakatime-addon/blob/master/README.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WakaTime Addon", "description": "Removes limit of viewing history in WakaTime", "version": "1.0", "manifest_version": 3, "action": { "default_popup": "popup.html" }, "permissions": [ "declarativeNetRequest" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/wakatime.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/wakatime.com\/*" ], "js": [ "content.js" ] } ], "declarative_net_request": { "rule_resources": [ { "id": "rules", "enabled": true, "path": "rules.json" } ] } } |