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)."입니다.
확장 프로그램 스크린샷
PayTrackr 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |