PPS HK Pay Bot
Pay bill via PPS HK repeatedly with small amount each time
Was ist PPS HK Pay Bot?
PPS HK Pay Bot ist eine Chrome-Erweiterung, die von FreeHK Developer entwickelt wurde, und ihr Hauptmerkmal ist "Pay bill via PPS HK repeatedly with small amount each time".
Erweiterungsscreenshots
PPS HK Pay Bot-Erweiterungs-CRX-Datei herunterladen
Laden Sie PPS HK Pay Bot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Source & Readme: https://github.com/freehk-developer/chrome-ppshk-pay-bot Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mlpilfangidnjfmahodhihmmaenpidgk |
| Offizielle URL | https://chromewebstore.google.com/detail/pps-hk-pay-bot/mlpilfangidnjfmahodhihmmaenpidgk |
| Beschreibung | Pay bill via PPS HK repeatedly with small amount each time |
| Dateigröße | 21.99 KB |
| Installationsanzahl | 77 |
| Aktuelle Version | 1.0.9 |
| Letztes Update | 2019-10-29 |
| Veröffentlichungsdatum | 2019-10-29 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | FreeHK Developer |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/freehk-developer/chrome-ppshk-pay-bot |
| Hilfeseite URL | https://github.com/freehk-developer/chrome-ppshk-pay-bot |
| Unterstützte Sprachen | 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"
]
}
]
} | |