PayTrackr

Track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil).

什么是PayTrackr?

PayTrackr是由wobsoriano开发的Chrome扩展程序,该扩展的主要功能是“Track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil).”。

扩展截图

screenshot

下载PayTrackr扩展crx文件

下载PayTrackr扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        PayTrackr is the easiest and safest way to track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil).

Features:

Recent Payments - history of micropayments to web monetized contents
Dashboard - aggregated breakdown where users can see how much went to each site in total
Payment Alerts - set up Payment Alerts to get notifications when a certain amount is reached
Export History - export micropayments history to csv/xlsx
Theme switcher - choose between light and dark mode

PayTrackr stores all of your micropayments locally on your device. Only you have access to your data. Not even the web monetization providers can read your data.

PayTrackr is 100% open source software. The source code for PayTrackr is hosted on GitHub and everyone is free to review, audit, and contribute to the PayTrackr codebase.                    

扩展基本信息

名称 PayTrackr PayTrackr
ID pcfbnmieeijeahdbbjefgkcbkfnccpei
官方URL https://chromewebstore.google.com/detail/paytrackr/pcfbnmieeijeahdbbjefgkcbkfnccpei
简介 Track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil).
文件大小 1.11 MB
安装次数 23
当前版本 0.2.4
更新时间 2020-06-09
上架时间 2020-06-08
评分 5.00/5 共2次评分
开发者 wobsoriano
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PayTrackr",
    "description": "Track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil).",
    "version": "0.2.4",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "paytrackr",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "match_about_blank": false,
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "inject.js"
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "notifications",
        "tabs"
    ]
}