PPS HK Pay Bot
Pay bill via PPS HK repeatedly with small amount each time
什么是PPS HK Pay Bot?
PPS HK Pay Bot是由FreeHK Developer开发的Chrome扩展程序,该扩展的主要功能是“Pay bill via PPS HK repeatedly with small amount each time”。
扩展截图
下载PPS HK Pay Bot扩展crx文件
下载PPS HK Pay Bot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Source & Readme: https://github.com/freehk-developer/chrome-ppshk-pay-bot
扩展基本信息
名称 | |
ID | mlpilfangidnjfmahodhihmmaenpidgk |
官方URL | https://chromewebstore.google.com/detail/pps-hk-pay-bot/mlpilfangidnjfmahodhihmmaenpidgk |
简介 | Pay bill via PPS HK repeatedly with small amount each time |
文件大小 | 21.99 KB |
安装次数 | 77 |
当前版本 | 1.0.9 |
更新时间 | 2019-10-29 |
上架时间 | 2019-10-29 |
评分 | 5.00/5 共4次评分 |
开发者 | FreeHK Developer |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/freehk-developer/chrome-ppshk-pay-bot |
帮助页面URL | https://github.com/freehk-developer/chrome-ppshk-pay-bot |
支持的语言 | 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" ] } ] } |