SameTab - keep only one copy of the tab open

SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…

SameTab - keep only one copy of the tab openとは何ですか?

SameTab - keep only one copy of the tab openはvalentin.alekseevによって開発されたChromeの拡張機能で、その主な機能は「SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…」です。

SameTab - keep only one copy of the tab open拡張機能のCRXファイルをダウンロード

SameTab - keep only one copy of the tab open拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.                    

拡張機能の基本情報

名前 SameTab - keep only one copy of the tab open SameTab - keep only one copy of the tab open
ID egndhnnhgedkbnkdfjpakgpclhbjcjfb
公式URL https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb
説明 SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
ファイルサイズ 8.9 KB
インストール数 12
現在のバージョン 1.1
最終更新日 2016-02-16
公開日 2016-02-16
評価 3.50/5 合計 2 レビュー
開発者 valentin.alekseev
支払い方法 free
ヘルプページのURL https://github.com/valentinalexeev/chrome-sametab
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SameTab - keep only one copy of the tab open",
    "description": "",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "storage"
    ]
}