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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
]
}
} | |