Save Image As

Save any image as JPG/PNG/WebP with right click

什么是Save Image As?

Save Image As是由wong2开发的Chrome扩展程序,该扩展的主要功能是“Save any image as JPG/PNG/WebP with right click”。

扩展截图

screenshot
screenshot

下载Save Image As扩展crx文件

下载Save Image As扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Save any image on the web as JPG/PNG/WebP with right click.

This extension adds a context menu on images to easily save them as JPG, PNG or WebP files to your computer, it automatically does the format conversion for you.                    

扩展基本信息

名称 Save Image As Save Image As
ID leijekmpombnobpofmnmdnebblfjnkbi
官方URL https://chromewebstore.google.com/detail/save-image-as/leijekmpombnobpofmnmdnebblfjnkbi
简介 Save any image as JPG/PNG/WebP with right click
文件大小 17.11 KB
安装次数 41
当前版本 1.0
更新时间 2023-09-24
上架时间 2023-09-23
评分 5.00/5 共2次评分
开发者 wong2
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://chathub.gg/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "manifest_version": 3,
    "version": "1.0",
    "permissions": [
        "contextMenus",
        "downloads"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}