PPS HK Pay Bot
Pay bill via PPS HK repeatedly with small amount each time
Cos'è PPS HK Pay Bot?
PPS HK Pay Bot è un'estensione di Chrome sviluppata da FreeHK Developer, e la sua funzione principale è "Pay bill via PPS HK repeatedly with small amount each time".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione PPS HK Pay Bot
Scarica i file di estensione PPS HK Pay Bot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Source & Readme: https://github.com/freehk-developer/chrome-ppshk-pay-bot
Informazioni di Base sull'Estensione
Nome | |
ID | mlpilfangidnjfmahodhihmmaenpidgk |
URL Ufficiale | https://chromewebstore.google.com/detail/pps-hk-pay-bot/mlpilfangidnjfmahodhihmmaenpidgk |
Descrizione | Pay bill via PPS HK repeatedly with small amount each time |
Dimensione del File | 21.99 KB |
Conteggio Installazioni | 77 |
Versione Corrente | 1.0.9 |
Ultimo Aggiornamento | 2019-10-29 |
Data di Pubblicazione | 2019-10-29 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | FreeHK Developer |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/freehk-developer/chrome-ppshk-pay-bot |
URL della Pagina di Aiuto | https://github.com/freehk-developer/chrome-ppshk-pay-bot |
Lingue Supportate | 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" ] } ] } |