Just Save

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

Just Save क्या है?

Just Save me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links."।

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

screenshot

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

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