Save In…

Saves {image, video, audio, links, selection, page} in directories relative to the default download directory.

Save In…란 무엇입니까?

Save In…은(는) gyng에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Saves {image, video, audio, links, selection, page} in directories relative to the default download directory."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Save In… 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds a context menu to save media {image, video, audio, link, selection, page} in user-defined folders or directories relative to the default download location.

Save into dynamically named directories.

Flexible rules-based download renaming and routing.

Option to save as shortcuts {.url, .desktop, .html redirect}.

The WebExtension API only allows saving into directories relative to the default download directory. Symlinks can be used to get around this limitation:

Windows: mklink /D C:\path\to\symlink D:\path\to\actual
macOS/Unix: ln -s /path/to/actual /path/to/symlink

Make sure the actual directories exist, or downloads will silently fail.

 permission is used to get around CORS on HTTP HEAD requests (to check for Content-Disposition headers)
tabs permission is used to get the active page's title.

Configure before use.                    

확장 프로그램 기본 정보

이름 Save In… Save In…
ID jpblofcpgfjikaapfedldfeilmpgkedf
공식 URL https://chromewebstore.google.com/detail/save-in%E2%80%A6/jpblofcpgfjikaapfedldfeilmpgkedf
설명 Saves {image, video, audio, links, selection, page} in directories relative to the default download directory.
파일 크기 143 KB
설치 횟수 60,000
현재 버전 3.7.1
최근 업데이트 2023-02-14
출시 날짜 2019-12-21
평점 4.30/5 총 20 개의 평점
개발자 gyng
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gyng/save-in/
도움말 페이지 URL https://github.com/gyng/save-in/issues
지원되는 언어 en,nl,sv
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "3.7.1",
    "default_locale": "en",
    "applications": {
        "gecko": {
            "id": "{72d92df5-2aa0-4b06-b807-aa21767545cd}"
        }
    },
    "developer": {
        "name": "Ng Guoyou",
        "url": "https:\/\/github.com\/gyng\/save-in"
    },
    "homepage_url": "https:\/\/github.com\/gyng\/save-in",
    "background": {
        "scripts": [
            "src\/vendor\/browser-polyfill.js",
            "src\/vendor\/content-disposition.js",
            "src\/chrome-detector.js",
            "src\/constants.js",
            "src\/history.js",
            "src\/notification.js",
            "src\/path.js",
            "src\/download.js",
            "src\/router.js",
            "src\/shortcut.js",
            "src\/messaging.js",
            "src\/headers.js",
            "src\/variable.js",
            "src\/menu.js",
            "src\/option.js",
            "src\/index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content\/content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "activeTab",
        "tabs",
        "contextMenus",
        "downloads",
        "notifications",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "options_ui": {
        "browser_style": true,
        "chrome_style": true,
        "page": "src\/options\/options.html"
    },
    "icons": {
        "48": "icons\/ic_archive_black_48px.png",
        "96": "icons\/ic_archive_black_96px.png",
        "128": "icons\/ic_archive_black_128px.png"
    }
}