WakaTime Addon
Removes limit of viewing history in WakaTime
Cos'è WakaTime Addon?
WakaTime Addon è un'estensione di Chrome sviluppata da always.prog, e la sua funzione principale è "Removes limit of viewing history in WakaTime".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WakaTime Addon
Scarica i file di estensione WakaTime Addon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | najcldbmeoakbejeapljkfhnmkieibdk |
| URL Ufficiale | https://chrome.google.com/webstore/detail/wakatime-addon/najcldbmeoakbejeapljkfhnmkieibdk |
| Descrizione | Removes limit of viewing history in WakaTime |
| Dimensione del File | 4.62 KB |
| Conteggio Installazioni | 21 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2023-03-09 |
| Data di Pubblicazione | 2023-03-09 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | always.prog |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Always-prog/wakatime-addon/blob/master/README.md |
| Lingue Supportate | 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"
}
]
}
} | |