Save Tabs

Save the active tab on 1-CLICK

Cos'è Save Tabs?

Save Tabs è un'estensione di Chrome sviluppata da greatghoul, e la sua funzione principale è "Save the active tab on 1-CLICK".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Save Tabs

Scarica i file di estensione Save Tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Save Tabs Save Tabs
ID lmiaenpbgbbkgmknifplkfiaphkmjmen
URL Ufficiale https://chromewebstore.google.com/detail/save-tabs/lmiaenpbgbbkgmknifplkfiaphkmjmen
Descrizione Save the active tab on 1-CLICK
Dimensione del File 45.47 KB
Conteggio Installazioni 31
Versione Corrente 1.0.0
Ultimo Aggiornamento 2019-08-30
Data di Pubblicazione 2019-08-26
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore greatghoul
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/greatghoul/save-tabs
URL della Pagina di Aiuto https://github.com/greatghoul/save-tabs/issues
Lingue Supportate 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"
    ]
}