微博图床

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

Qu'est-ce que 微博图床 ?

微博图床 est une extension Chrome développée par Aqours, et sa fonction principale est "微博图床,支持选择、拖拽、粘贴、网页右键上传图片,并生成图片地址,支持浏览和删除历史记录,支持同步上传记录".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension 微博图床

Téléchargez les fichiers d'extension 微博图床 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

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

Informations de Base sur l'Extension

Nom 微博图床 微博图床
ID pinjkilghdfhnkibhcangnpmcpdpmehk
URL Officiel https://chromewebstore.google.com/detail/%E5%BE%AE%E5%8D%9A%E5%9B%BE%E5%BA%8A/pinjkilghdfhnkibhcangnpmcpdpmehk
Description 微博图床,支持选择、拖拽、粘贴、网页右键上传图片,并生成图片地址,支持浏览和删除历史记录,支持同步上传记录
Taille du Fichier 298 KB
Nombre d'Installations 4,458
Version Actuelle 6.0.2
Dernière Mise à Jour 2024-01-10
Date de Publication 2020-06-13
Évaluation 4.67/5 Total 36 Évaluations
Développeur Aqours
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Semibold/Weibo-Picture-Store
URL de la Page d'Aide https://github.com/Semibold/Weibo-Picture-Store/issues
URL de la Page de Politique de Confidentialité https://github.com/Semibold/Weibo-Picture-Store/blob/master/docs/privacy-policy.md
Langues Prises en Charge 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}