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
Eメール [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"
    ]
}