BPIP Extension
Provides additional features to BitcoinTalk.org using data from BPIP.org
What is BPIP Extension?
BPIP Extension is a Chrome extension developed by BPIP Developer, and its main feature is "Provides additional features to BitcoinTalk.org using data from BPIP.org".
Extension Screenshots
Download BPIP Extension Extension CRX File
Download BPIP Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension enhances BitcoinTalk forum by adding links to BitcoinTalk Public Information Project (BPIP) and providing optional features such as showing user status.
Extension Basic Information
Name | BPIP Extension |
ID | ecpfdlfjiabpdnlhmkmannofnmpdakkj |
Official URL | https://chromewebstore.google.com/detail/bpip-extension/ecpfdlfjiabpdnlhmkmannofnmpdakkj |
Description | Provides additional features to BitcoinTalk.org using data from BPIP.org |
File Size | 192 KB |
Installation Count | 187 |
Current Version | 2.2.5 |
Last Updated | 2020-12-03 |
Publish Date | 2020-02-11 |
Rating | 5.00/5 Total 1 Ratings |
Developer | BPIP Developer |
[email protected] | |
Payment Type | free |
Extension Website | https://bpip.org |
Help Page URL | https://bitcointalk.org/index.php?topic=5224821 |
Supported Languages | 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" ] } |