PPS HK Pay Bot

Pay bill via PPS HK repeatedly with small amount each time

Vad är PPS HK Pay Bot?

PPS HK Pay Bot är en Chrome-tillägg utvecklad av FreeHK Developer, och dess huvudfunktion är "Pay bill via PPS HK repeatedly with small amount each time".

Tilläggsskärmbilder

screenshot

Ladda ner PPS HK Pay Bot-förlängningens CRX-fil

Ladda ner PPS HK Pay Bot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Source & Readme: https://github.com/freehk-developer/chrome-ppshk-pay-bot                    

Grundläggande Information om Tillägg

Namn PPS HK Pay Bot PPS HK Pay Bot
ID mlpilfangidnjfmahodhihmmaenpidgk
Officiell webbadress https://chromewebstore.google.com/detail/pps-hk-pay-bot/mlpilfangidnjfmahodhihmmaenpidgk
Beskrivning Pay bill via PPS HK repeatedly with small amount each time
Filstorlek 21.99 KB
Antal Installationer 77
Aktuell Version 1.0.9
Senast Uppdaterad 2019-10-29
Publiceringsdatum 2019-10-29
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare FreeHK Developer
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/freehk-developer/chrome-ppshk-pay-bot
Hjälpsida URL https://github.com/freehk-developer/chrome-ppshk-pay-bot
Stödda Språk 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"
            ]
        }
    ]
}