Download Sorter

An extension that sorts the downloaded file to the specified folder

Download Sorter란 무엇입니까?

Download Sorter은(는) nisam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that sorts the downloaded file to the specified folder"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Download Sorter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        New Update Note
1.0 -> 2.0
- Autosync(Through chrome account)
- Multiple extension settings ex) jpg,gif,png -> jpg, gif, png 
- String repetition setting ex) zip* -> zip, zip.001, zip.002, zip.003, zipabcde …

If there is a bug after the update, please write a comment. I'll fix it quickly.

------------------------------------

An extension that sorts the downloaded file to the specified folder based on the file extension.

Example 1) File extension "jpg" / Folder "images"
When downloading jpg file, the file will be downloaded to images folder.

Example 2) File extension "zip" / Folder "archive/zip"
When downloading zip file, the file will be downloaded to zip folder under archive folder.                    

확장 프로그램 기본 정보

이름 Download Sorter Download Sorter
ID mebfblkahpknogabckmdjcmjbnpfdpcj
공식 URL https://chromewebstore.google.com/detail/download-sorter/mebfblkahpknogabckmdjcmjbnpfdpcj
설명 An extension that sorts the downloaded file to the specified folder
파일 크기 533 KB
설치 횟수 2,145
현재 버전 2.0
최근 업데이트 2016-10-31
출시 날짜 2016-10-31
평점 4.60/5 총 35 개의 평점
개발자 nisam
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ko
manifest.json
{
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ]
    },
    "content_security_policy": "script-src 'self' chrome-extension-resource: 'unsafe-eval'; default-src 'self'",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "dist\/img\/icon128.png",
        "48": "dist\/img\/icon48.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "dist\/img\/icon16.png"
        },
        "default_title": "Download sorter",
        "default_popup": "options.html"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqxNYe0rJwzHxMrnVBy0ve+FjSs9CX4mmIU5tnMINyCEzGFKDXfuT6Qz7ztL+iPnCkBMjsmfRrurmmZ2cfNXCCC7jXWFinnpQOIlMylMY6JNso8k6o4MITdmVKERUD6xhZVIe1T0ugUw\/USvOySKctbXJDaiMZHayZQAdGQTCcDFhR2KsNRl+ZsQO5sLwkUkt2hYyE8J9WTCZPdHDz03yUd+\/hoZzNQS3yugWE0AYKPLTxpCfGQEkN1JyWOdwWtAH\/Be6tAHI47Zo0luj4zrQGkw9rVvRBcLDblkGO+7EAy9ne\/KlUduU5Nzq5EvtaKmIypgfUjfbVIdB6wlcnojDoQIDAQAB",
    "manifest_version": 2,
    "name": "Download Sorter",
    "options_page": "options.html",
    "permissions": [
        "downloads",
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0"
}