Just Save
A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.
Qu'est-ce que Just Save ?
Just Save est une extension Chrome développée par me, et sa fonction principale est "A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Just Save
Téléchargez les fichiers d'extension Just Save au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Just Save |
ID | plaggkdohpgdahkidgjmbhafnbbacpno |
URL Officiel | https://chromewebstore.google.com/detail/just-save/plaggkdohpgdahkidgjmbhafnbbacpno |
Description | A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links. |
Taille du Fichier | 15.02 KB |
Nombre d'Installations | 3,652 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2016-04-30 |
Date de Publication | 2016-04-29 |
Évaluation | 4.43/5 Total 21 Évaluations |
Développeur | me |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/lewisl9029/just-save-webextension |
URL de la Page d'Aide | https://github.com/lewisl9029/just-save-webextension |
Langues Prises en Charge | 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" ] } |