Save Tabs

Save the active tab on 1-CLICK

O que é Save Tabs?

Save Tabs é uma extensão do Chrome desenvolvida por greatghoul, e sua principal característica é "Save the active tab on 1-CLICK".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Save Tabs

Baixe arquivos de extensão Save Tabs 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

                        Chrome Extension to save active tab by 1-click.

## Normal Mode

Open the extension popup and save.

## Fast Mode

Hold Alt key and click the extension icon to save active tab without open the extension popup.

-----

The extension is open source

https://github.com/greatghoul/save-tabs/                    

Informações Básicas da Extensão

Nome Save Tabs Save Tabs
ID lmiaenpbgbbkgmknifplkfiaphkmjmen
URL Oficial https://chromewebstore.google.com/detail/save-tabs/lmiaenpbgbbkgmknifplkfiaphkmjmen
Descrição Save the active tab on 1-CLICK
Tamanho do Arquivo 45.47 KB
Contagem de Instalações 31
Versão Atual 1.0.0
Última Atualização 2019-08-30
Data de Publicação 2019-08-26
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor greatghoul
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/greatghoul/save-tabs
URL da Página de Ajuda https://github.com/greatghoul/save-tabs/issues
Idiomas Suportados en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.0.0",
    "default_locale": "en",
    "icons": {
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_appTooltip__"
    },
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "page.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs"
    ]
}