WakaTime Addon
Removes limit of viewing history in WakaTime
什么是WakaTime Addon?
WakaTime Addon是由always.prog开发的Chrome扩展程序,该扩展的主要功能是“Removes limit of viewing history in WakaTime”。
扩展截图
下载WakaTime Addon扩展crx文件
下载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" } ] } } |