Just Save

A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.

什么是Just Save?

Just Save是由me开发的Chrome扩展程序,该扩展的主要功能是“A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.”。

扩展截图

screenshot

下载Just Save扩展crx文件

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

扩展使用说明

                        Just Save is a simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.

Just Save adds a single item to your context menu that saves the clicked image, link, or page immediately to your default downloads folder, without requiring any additional input.

Currently, Just Saved is available on both Firefox (https://addons.mozilla.org/en-US/firefox/addon/just-save/) and Chrome (https://chrome.google.com/webstore/detail/plaggkdohpgdahkidgjmbhafnbbacpno), with support for other browsers planned.

Just Save is built on top of the WebExtensions API, which means it can work across multiple browsers and will remain compatible with Firefox even after XUL-based addons become deprecated. 

Just Save is completely free and open-source. Feel free to visit the GitHub repo (https://github.com/lewisl9029/just-save-webextension) if you'd like to see the source code, report an issue, or contribute changes.                    

扩展基本信息

名称 Just Save Just Save
ID plaggkdohpgdahkidgjmbhafnbbacpno
官方URL https://chromewebstore.google.com/detail/just-save/plaggkdohpgdahkidgjmbhafnbbacpno
简介 A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.
文件大小 15.02 KB
安装次数 3,652
当前版本 0.0.2
更新时间 2016-04-30
上架时间 2016-04-29
评分 4.43/5 共21次评分
开发者 me
付费类型 free
扩展官网 https://github.com/lewisl9029/just-save-webextension
帮助页面URL https://github.com/lewisl9029/just-save-webextension
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Just Save",
    "version": "0.0.2",
    "description": "A simple WebExtension for skipping the \"Save As\" dialog when saving images, pages and links.",
    "icons": {
        "48": "icons\/just-save-48.png",
        "96": "icons\/just-save-96.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "45.0"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "just-save.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "downloads"
    ]
}