微博图床

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

Apa itu 微博图床?

微博图床 adalah ekstensi Chrome yang dikembangkan oleh Aqours, dan fitur utamanya adalah "微博图床,支持选择、拖拽、粘贴、网页右键上传图片,并生成图片地址,支持浏览和删除历史记录,支持同步上传记录".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi 微博图床

Unduh file ekstensi 微博图床 dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

访问 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                    

Informasi Dasar Ekstensi

Nama 微博图床 微博图床
ID pinjkilghdfhnkibhcangnpmcpdpmehk
URL Resmi https://chromewebstore.google.com/detail/%E5%BE%AE%E5%8D%9A%E5%9B%BE%E5%BA%8A/pinjkilghdfhnkibhcangnpmcpdpmehk
Deskripsi 微博图床,支持选择、拖拽、粘贴、网页右键上传图片,并生成图片地址,支持浏览和删除历史记录,支持同步上传记录
Ukuran File 298 KB
Jumlah Instalasi 4,458
Versi Saat Ini 6.0.2
Terakhir Diperbarui 2024-01-10
Tanggal Publikasi 2020-06-13
Penilaian 4.67/5 Total 36 Penilaian
Pengembang Aqours
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/Semibold/Weibo-Picture-Store
URL Halaman Bantuan https://github.com/Semibold/Weibo-Picture-Store/issues
URL Halaman Kebijakan Privasi https://github.com/Semibold/Weibo-Picture-Store/blob/master/docs/privacy-policy.md
Bahasa yang Didukung 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}