WakaTime Addon

Removes limit of viewing history in WakaTime

What is WakaTime Addon?

WakaTime Addon is a Chrome extension developed by always.prog, and its main feature is "Removes limit of viewing history in WakaTime".

Extension Screenshots

screenshot
screenshot

Download WakaTime Addon Extension CRX File

Download WakaTime Addon extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name WakaTime Addon WakaTime Addon
ID najcldbmeoakbejeapljkfhnmkieibdk
Official URL https://chrome.google.com/webstore/detail/wakatime-addon/najcldbmeoakbejeapljkfhnmkieibdk
Description Removes limit of viewing history in WakaTime
File Size 4.62 KB
Installation Count 21
Current Version 1.0
Last Updated 2023-03-09
Publish Date 2023-03-09
Rating 5.00/5 Total 1 Ratings
Developer always.prog
Email [email protected]
Payment Type free
Extension Website https://github.com/Always-prog/wakatime-addon/blob/master/README.md
Supported Languages 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"
            }
        ]
    }
}