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"
    ]
}