B站图床
B站图床、转短链插件
What is B站图床?
B站图床 is a Chrome extension developed by 执笔看墨花开, and its main feature is "B站图床、转短链插件".
Extension Screenshots
Download B站图床 Extension CRX File
Download B站图床 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
通过哔哩哔哩发布动态功能中的图片上传API存储建立图床,数据完全存在本地,代码开源:https://github.com/xlzy520/bilibili-img-uploader
Extension Basic Information
Name | B站图床 |
ID | domljbndjbjgpkhdbmfgmiclggdfojnd |
Official URL | https://chromewebstore.google.com/detail/b%E7%AB%99%E5%9B%BE%E5%BA%8A/domljbndjbjgpkhdbmfgmiclggdfojnd |
Description | B站图床、转短链插件 |
File Size | 411 KB |
Installation Count | 1,000 |
Current Version | 2.2.4 |
Last Updated | 2023-12-13 |
Publish Date | 2022-01-26 |
Rating | 5.00/5 Total 1 Ratings |
Developer | 执笔看墨花开 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/xlzy520/bilibili-img-uploader |
Help Page URL | https://github.com/xlzy520/bilibili-img-uploader |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "B\u7ad9\u56fe\u5e8a", "version": "2.2.4", "description": "B\u7ad9\u56fe\u5e8a\u3001\u8f6c\u77ed\u94fe\u63d2\u4ef6", "homepage_url": "https:\/\/github.com\/xlzy520\/bilibili-img-uploader", "action": { "default_title": "\u54d4\u54e9\u54d4\u54e9\u56fe\u5e8a", "default_icon": ".\/assets\/favicon.png" }, "background": { "service_worker": ".\/dist\/background\/index.mjs" }, "icons": { "16": ".\/assets\/[email protected]", "48": ".\/assets\/[email protected]", "64": ".\/assets\/[email protected]", "128": ".\/assets\/favicon.png" }, "permissions": [ "cookies" ], "host_permissions": [ "https:\/\/*.bilibili.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.bilibili.com\/*" ], "js": [ ".\/dist\/contentScripts\/index.global.js" ] }, { "matches": [ "https:\/\/www.bilibili.com\/zhibi-image-upload" ], "js": [ ".\/dist\/contentScripts\/index.global.js" ], "css": [ ".\/dist\/contentScripts\/style.css" ], "run_at": "document_start" } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |