WakaTime Addon
Removes limit of viewing history in WakaTime
Что такое WakaTime Addon?
WakaTime Addon - это расширение Chrome, разработанное always.prog, и его основная функция - "Removes limit of viewing history in WakaTime".
Снимки экрана расширения
Скачать файл CRX расширения WakaTime Addon
Скачайте файлы расширений 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 |
| Электронная почта | [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"
}
]
}
} | |