BPIP Extension

Provides additional features to BitcoinTalk.org using data from BPIP.org

BPIP Extension là gì?

BPIP Extension là một tiện ích mở rộng Chrome được phát triển bởi BPIP Developer, và tính năng chính của nó là "Provides additional features to BitcoinTalk.org using data from BPIP.org".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng BPIP Extension

Tải xuống các tệp mở rộng BPIP Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension enhances BitcoinTalk forum by adding links to BitcoinTalk Public Information Project (BPIP) and providing optional features such as showing user status.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BPIP Extension BPIP Extension
ID ecpfdlfjiabpdnlhmkmannofnmpdakkj
URL Chính Thức https://chromewebstore.google.com/detail/bpip-extension/ecpfdlfjiabpdnlhmkmannofnmpdakkj
Mô tả Provides additional features to BitcoinTalk.org using data from BPIP.org
Kích Thước Tệp 192 KB
Số Lần Cài Đặt 187
Phiên Bản Hiện Tại 2.2.5
Cập Nhật Lần Cuối 2020-12-03
Ngày Phát Hành 2020-02-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển BPIP Developer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://bpip.org
URL Trang Trợ Giúp https://bitcointalk.org/index.php?topic=5224821
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BPIP Extension",
    "description": "Provides additional features to BitcoinTalk.org using data from BPIP.org",
    "version": "2.2.5",
    "author": "BPIP Developers",
    "browser_action": {
        "default_title": "BPIP Extension",
        "default_icon": {
            "16": "img\/n16.png",
            "32": "img\/n32.png",
            "64": "img\/n64.png",
            "128": "img\/128f.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitcointalk.org\/*"
            ],
            "js": [
                "js\/browser-polyfill.js",
                "js\/common.js",
                "js\/bct-start.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/bitcointalk.org\/*"
            ],
            "js": [
                "js\/bct-content-offline.js",
                "js\/bct-content-thread.js",
                "js\/bct-content-user.js",
                "js\/bct-content.js"
            ],
            "css": [
                "css\/bct-content.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "js\/browser-polyfill.js",
            "js\/common.js",
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "html\/settings.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "img\/n16.png",
        "32": "img\/n32.png",
        "64": "img\/n64.png",
        "128": "img\/128f.png"
    },
    "web_accessible_resources": [
        "css\/bct-dark-silver.css",
        "css\/bct-dark-purple.css",
        "css\/bct-enhanced.css",
        "css\/bct-neutral.css",
        "img\/bpip-link.ico",
        "img\/loyce-link.ico",
        "img\/ninjastic-link.ico",
        "img\/brackets.png",
        "img\/person-add.png",
        "img\/person-remove.png",
        "img\/btc.png",
        "img\/eth.png"
    ],
    "permissions": [
        "*:\/\/bitcointalk.org\/*",
        "activeTab",
        "storage"
    ]
}