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…

What is SameTab - keep only one copy of the tab open?

SameTab - keep only one copy of the tab open is a Chrome extension developed by valentin.alekseev, and its main feature is "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…".

Download SameTab - keep only one copy of the tab open Extension CRX File

Download SameTab - keep only one copy of the tab open extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SameTab - keep only one copy of the tab open SameTab - keep only one copy of the tab open
ID egndhnnhgedkbnkdfjpakgpclhbjcjfb
Official URL https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb
Description 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…
File Size 8.9 KB
Installation Count 12
Current Version 1.1
Last Updated 2016-02-16
Publish Date 2016-02-16
Rating 3.50/5 Total 2 Ratings
Developer valentin.alekseev
Payment Type free
Help Page URL https://github.com/valentinalexeev/chrome-sametab
Supported Languages 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"
    ]
}