PPS HK Pay Bot
Pay bill via PPS HK repeatedly with small amount each time
Hvad er PPS HK Pay Bot?
PPS HK Pay Bot er en Chrome-udvidelse udviklet af FreeHK Developer, og dens hovedfunktion er "Pay bill via PPS HK repeatedly with small amount each time".
Udvidelsesskærmbilleder
Download PPS HK Pay Bot-udvidelses-CRX-fil
Download PPS HK Pay Bot-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Source & Readme: https://github.com/freehk-developer/chrome-ppshk-pay-bot
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | mlpilfangidnjfmahodhihmmaenpidgk |
Officiel URL | https://chromewebstore.google.com/detail/pps-hk-pay-bot/mlpilfangidnjfmahodhihmmaenpidgk |
Beskrivelse | Pay bill via PPS HK repeatedly with small amount each time |
Filstørrelse | 21.99 KB |
Antal Installationer | 77 |
Nuværende Version | 1.0.9 |
Senest Opdateret | 2019-10-29 |
Udgivelsesdato | 2019-10-29 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | FreeHK Developer |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/freehk-developer/chrome-ppshk-pay-bot |
Hjælpeside-URL | https://github.com/freehk-developer/chrome-ppshk-pay-bot |
Understøttede Sprog | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PPS HK Pay Bot", "version": "1.0.9", "description": "Pay bill via PPS HK repeatedly with small amount each time", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "96": "images\/icon96.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.ppshk.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] } ] } |