PayTrackr
Track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil).
PayTrackr क्या है?
PayTrackr wobsoriano द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Track and manage your micropayments to web monetized websites, having a web monetization provider membership (i.e. Coil)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PayTrackr एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |