PayTrackr
Track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil).
PayTrackr là gì?
PayTrackr là một tiện ích mở rộng Chrome được phát triển bởi wobsoriano, và tính năng chính của nó là "Track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil).".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PayTrackr
Tải xuống các tệp mở rộng PayTrackr dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PayTrackr |
ID | pcfbnmieeijeahdbbjefgkcbkfnccpei |
URL Chính Thức | https://chromewebstore.google.com/detail/paytrackr/pcfbnmieeijeahdbbjefgkcbkfnccpei |
Mô tả | Track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil). |
Kích Thước Tệp | 1.11 MB |
Số Lần Cài Đặt | 23 |
Phiên Bản Hiện Tại | 0.2.4 |
Cập Nhật Lần Cuối | 2020-06-09 |
Ngày Phát Hành | 2020-06-08 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | wobsoriano |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |