Save Tabs

Save the active tab on 1-CLICK

Wat is Save Tabs?

Save Tabs is een Chrome-extensie ontwikkeld door greatghoul, en de belangrijkste functie is "Save the active tab on 1-CLICK".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Save Tabs

Download Save Tabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam Save Tabs Save Tabs
ID lmiaenpbgbbkgmknifplkfiaphkmjmen
Officiële URL https://chromewebstore.google.com/detail/save-tabs/lmiaenpbgbbkgmknifplkfiaphkmjmen
Beschrijving Save the active tab on 1-CLICK
Bestandsgrootte 45.47 KB
Aantal Installaties 31
Huidige Versie 1.0.0
Laatst Bijgewerkt 2019-08-30
Publicatiedatum 2019-08-26
Beoordeling 4.50/5 Totaal 2 Beoordelingen
Ontwikkelaar greatghoul
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/greatghoul/save-tabs
Help Pagina-URL https://github.com/greatghoul/save-tabs/issues
Ondersteunde Talen 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"
    ]
}