WakaTime Addon
Removes limit of viewing history in WakaTime
Vad är WakaTime Addon?
WakaTime Addon är en Chrome-tillägg utvecklad av always.prog, och dess huvudfunktion är "Removes limit of viewing history in WakaTime".
Tilläggsskärmbilder
Ladda ner WakaTime Addon-förlängningens CRX-fil
Ladda ner WakaTime Addon-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | najcldbmeoakbejeapljkfhnmkieibdk |
| Officiell webbadress | https://chrome.google.com/webstore/detail/wakatime-addon/najcldbmeoakbejeapljkfhnmkieibdk |
| Beskrivning | Removes limit of viewing history in WakaTime |
| Filstorlek | 4.62 KB |
| Antal Installationer | 21 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2023-03-09 |
| Publiceringsdatum | 2023-03-09 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | always.prog |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Always-prog/wakatime-addon/blob/master/README.md |
| Stödda Språk | 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"
}
]
}
} | |