BPIP Extension
Provides additional features to BitcoinTalk.org using data from BPIP.org
Was ist BPIP Extension?
BPIP Extension ist eine Chrome-Erweiterung, die von BPIP Developer entwickelt wurde, und ihr Hauptmerkmal ist "Provides additional features to BitcoinTalk.org using data from BPIP.org".
Erweiterungsscreenshots
BPIP Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie BPIP Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension enhances BitcoinTalk forum by adding links to BitcoinTalk Public Information Project (BPIP) and providing optional features such as showing user status.
Grundlegende Informationen zur Erweiterung
Name | BPIP Extension |
ID | ecpfdlfjiabpdnlhmkmannofnmpdakkj |
Offizielle URL | https://chromewebstore.google.com/detail/bpip-extension/ecpfdlfjiabpdnlhmkmannofnmpdakkj |
Beschreibung | Provides additional features to BitcoinTalk.org using data from BPIP.org |
Dateigröße | 192 KB |
Installationsanzahl | 187 |
Aktuelle Version | 2.2.5 |
Letztes Update | 2020-12-03 |
Veröffentlichungsdatum | 2020-02-11 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | BPIP Developer |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://bpip.org |
Hilfeseite URL | https://bitcointalk.org/index.php?topic=5224821 |
Unterstützte Sprachen | 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" ] } |