Save In…

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

Save In… क्या है?

Save In… gyng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Saves {image, video, audio, links, selection, page} in directories relative to the default download directory."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Save In… एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}