WakaTime Addon
Removes limit of viewing history in WakaTime
WakaTime Addon क्या है?
WakaTime Addon always.prog द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes limit of viewing history in WakaTime"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में WakaTime Addon एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } ] } } |