Save Tabs

Save the active tab on 1-CLICK

What is Save Tabs?

Save Tabs is a Chrome extension developed by greatghoul, and its main feature is "Save the active tab on 1-CLICK".

Extension Screenshots

screenshot
screenshot

Download Save Tabs Extension CRX File

Download Save Tabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Save Tabs Save Tabs
ID lmiaenpbgbbkgmknifplkfiaphkmjmen
Official URL https://chromewebstore.google.com/detail/save-tabs/lmiaenpbgbbkgmknifplkfiaphkmjmen
Description Save the active tab on 1-CLICK
File Size 45.47 KB
Installation Count 31
Current Version 1.0.0
Last Updated 2019-08-30
Publish Date 2019-08-26
Rating 4.50/5 Total 2 Ratings
Developer greatghoul
Email [email protected]
Payment Type free
Extension Website https://github.com/greatghoul/save-tabs
Help Page URL https://github.com/greatghoul/save-tabs/issues
Supported Languages 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"
    ]
}