Save Tabs

Save the active tab on 1-CLICK

什么是Save Tabs?

Save Tabs是由greatghoul开发的Chrome扩展程序,该扩展的主要功能是“Save the active tab on 1-CLICK”。

扩展截图

screenshot
screenshot

下载Save Tabs扩展crx文件

下载Save Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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/                    

扩展基本信息

名称 Save Tabs Save Tabs
ID lmiaenpbgbbkgmknifplkfiaphkmjmen
官方URL https://chromewebstore.google.com/detail/save-tabs/lmiaenpbgbbkgmknifplkfiaphkmjmen
简介 Save the active tab on 1-CLICK
文件大小 45.47 KB
安装次数 31
当前版本 1.0.0
更新时间 2019-08-30
上架时间 2019-08-26
评分 4.50/5 共2次评分
开发者 greatghoul
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/greatghoul/save-tabs
帮助页面URL https://github.com/greatghoul/save-tabs/issues
支持的语言 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"
    ]
}