Just Save

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

Was ist Just Save?

Just Save ist eine Chrome-Erweiterung, die von me entwickelt wurde, und ihr Hauptmerkmal ist "A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.".

Erweiterungsscreenshots

screenshot

Just Save-Erweiterungs-CRX-Datei herunterladen

Laden Sie Just Save-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Just Save Just Save
ID plaggkdohpgdahkidgjmbhafnbbacpno
Offizielle URL https://chromewebstore.google.com/detail/just-save/plaggkdohpgdahkidgjmbhafnbbacpno
Beschreibung A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.
Dateigröße 15.02 KB
Installationsanzahl 3,652
Aktuelle Version 0.0.2
Letztes Update 2016-04-30
Veröffentlichungsdatum 2016-04-29
Bewertung 4.43/5 Insgesamt 21 Bewertungen
Entwickler me
Zahlungsart free
Erweiterungswebsite https://github.com/lewisl9029/just-save-webextension
Hilfeseite URL https://github.com/lewisl9029/just-save-webextension
Unterstützte Sprachen 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"
    ]
}