微博图床

微博图床,支持选择、拖拽、粘贴、网页右键上传图片,并生成图片地址,支持浏览和删除历史记录,支持同步上传记录

What is 微博图床?

微博图床 is a Chrome extension developed by Aqours, and its main feature is "微博图床,支持选择、拖拽、粘贴、网页右键上传图片,并生成图片地址,支持浏览和删除历史记录,支持同步上传记录".

Extension Screenshots

screenshot
screenshot

Download 微博图床 Extension CRX File

Download 微博图床 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

                        上传到图片到微博,同步到微相册,并生成外链
------------------------------

访问 GitHub 可获得详细的使用指南
https://github.com/Semibold/Weibo-Picture-Store

功能:
支持点选、拖拽、粘贴以及页面右键菜单上传图片到微博并同步到微相册;
支持拖拽上传文件夹中的图片文件;
支持 JPEG、PNG、GIF 三种图片格式;
支持 SVG、BMP、WebP、ico 有损转换为 PNG;
支持把 HTML5 视频的当前帧上传为 JPG 图像;
支持查看上传记录,简单的浏览及删除操作;
支持生成 URL、HTML、UBB、Markdown 四种格式;
支持单条、多条模式的复制操作;
支持选择协议(http、https 和相对协议);
支持三种固定裁剪尺寸和用户自定义尺寸;
支持使用微博账号和密码自动登录;
支持微博图片水印功能;
支持自定义生成的图片链接;

如有问题,可请前往 GitHub 中反馈。

------------------------------

隐私策略:https://github.com/Semibold/Weibo-Picture-Store/blob/master/docs/privacy-policy.md                    

Extension Basic Information

Name 微博图床 微博图床
ID pinjkilghdfhnkibhcangnpmcpdpmehk
Official URL https://chromewebstore.google.com/detail/%E5%BE%AE%E5%8D%9A%E5%9B%BE%E5%BA%8A/pinjkilghdfhnkibhcangnpmcpdpmehk
Description 微博图床,支持选择、拖拽、粘贴、网页右键上传图片,并生成图片地址,支持浏览和删除历史记录,支持同步上传记录
File Size 298 KB
Installation Count 4,458
Current Version 6.0.2
Last Updated 2024-01-10
Publish Date 2020-06-13
Rating 4.67/5 Total 36 Ratings
Developer Aqours
Email [email protected]
Payment Type free
Extension Website https://github.com/Semibold/Weibo-Picture-Store
Help Page URL https://github.com/Semibold/Weibo-Picture-Store/issues
Privacy Policy Page URL https://github.com/Semibold/Weibo-Picture-Store/blob/master/docs/privacy-policy.md
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_name__",
    "version": "6.0.2",
    "default_locale": "zh_CN",
    "description": "__MSG_ext_desc__",
    "icons": {
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_title": "__MSG_ext_name__"
    },
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "scripts\/inject.js"
            ],
            "css": [
                "sheets\/inject.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+W"
            }
        },
        "execute_pointer_events": {
            "suggested_key": {
                "default": "Alt+Shift+T"
            },
            "description": "\u7f6e\u9876\u9875\u9762\u4e2d\u7684\u89c6\u9891\u548c\u56fe\u7247"
        }
    },
    "homepage_url": "https:\/\/github.com\/Semibold\/Weibo-Picture-Store",
    "minimum_chrome_version": "110",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "clipboardWrite",
        "downloads",
        "contextMenus",
        "notifications",
        "storage",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "*:\/\/*.weibo.cn\/*",
        "*:\/\/*.weibo.com\/*",
        "*:\/\/*.sina.com.cn\/*",
        "*:\/\/*.sinaimg.cn\/*"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}