WakaTime Addon

Removes limit of viewing history in WakaTime

什麼是WakaTime Addon?

WakaTime Addon是由always.prog開發的Chrome擴展程式,該擴展的主要功能是“Removes limit of viewing history in WakaTime”。

擴展截圖

screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 WakaTime Addon WakaTime Addon
ID najcldbmeoakbejeapljkfhnmkieibdk
官方網址 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"
            }
        ]
    }
}