Just Save
A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.
Co to jest Just Save?
Just Save to rozszerzenie Chrome opracowane przez me, a jego główną funkcją jest „A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Just Save
Pobierz pliki rozszerzeń Just Save w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Just Save |
ID | plaggkdohpgdahkidgjmbhafnbbacpno |
Oficjalny URL | https://chromewebstore.google.com/detail/just-save/plaggkdohpgdahkidgjmbhafnbbacpno |
Opis | A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links. |
Rozmiar pliku | 15.02 KB |
Liczba instalacji | 3,652 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2016-04-30 |
Data Publikacji | 2016-04-29 |
Ocena | 4.43/5 Łącznie 21 Oceny |
Deweloper | me |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/lewisl9029/just-save-webextension |
Adres URL Strony Pomocy | https://github.com/lewisl9029/just-save-webextension |
Obsługiwane Języki | 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" ] } |