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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}