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
官方網址 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"
    ]
}