Fork Pay
Pay for bitcoin transactions with your favourite fork.
什么是Fork Pay?
Fork Pay是由http://forkpay.net开发的Chrome扩展程序,该扩展的主要功能是“Pay for bitcoin transactions with your favourite fork.”。
扩展截图
下载Fork Pay扩展crx文件
下载Fork Pay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Pay your Bitcoin bills with your favourite crypto currency! 扩展基本信息
| 名称 | |
| ID | aghknfeghpcdcnalgcjadfcelpgnagjg |
| 官方URL | https://chrome.google.com/webstore/detail/fork-pay/aghknfeghpcdcnalgcjadfcelpgnagjg |
| 简介 | Pay for bitcoin transactions with your favourite fork. |
| 文件大小 | 68.41 KB |
| 安装次数 | 18 |
| 当前版本 | 0.5.4 |
| 更新时间 | 2015-12-04 |
| 上架时间 | 2015-12-04 |
| 评分 | 3.00/5 共1次评分 |
| 开发者 | http://forkpay.net |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Fork Pay",
"version": "0.5.4",
"manifest_version": 2,
"description": "Pay for bitcoin transactions with your favourite fork.",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"options_page": "options.html",
"permissions": [
"tabs",
"contextMenus",
"storage",
"https:\/\/coinomat.com\/"
],
"background": {
"scripts": [
"bg.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*\/*"
],
"css": [
"bubble.css",
"popup.css"
],
"js": [
"jquery.min.js",
"jquery.qrcode.min.js",
"def_list.js",
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"web_accessible_resources": [
"bubble.html",
"bubble.css",
"popup.html",
"popup.css",
"images\/*"
],
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
} | |