Just Save

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

O que é Just Save?

Just Save é uma extensão do Chrome desenvolvida por me, e sua principal característica é "A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Just Save

Baixe arquivos de extensão Just Save no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Just Save Just Save
ID plaggkdohpgdahkidgjmbhafnbbacpno
URL Oficial https://chromewebstore.google.com/detail/just-save/plaggkdohpgdahkidgjmbhafnbbacpno
Descrição A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.
Tamanho do Arquivo 15.02 KB
Contagem de Instalações 3,652
Versão Atual 0.0.2
Última Atualização 2016-04-30
Data de Publicação 2016-04-29
Classificação 4.43/5 Total de 21 Avaliações
Desenvolvedor me
Tipo de Pagamento free
Site da Extensão https://github.com/lewisl9029/just-save-webextension
URL da Página de Ajuda https://github.com/lewisl9029/just-save-webextension
Idiomas Suportados 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"
    ]
}