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…

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

SameTab - keep only one copy of the tab open is een Chrome-extensie ontwikkeld door valentin.alekseev, en de belangrijkste functie 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 het CRX-bestand van de extensie SameTab - keep only one copy of the tab open

Download SameTab - keep only one copy of the tab open-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam SameTab - keep only one copy of the tab open SameTab - keep only one copy of the tab open
ID egndhnnhgedkbnkdfjpakgpclhbjcjfb
Officiële URL https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb
Beschrijving 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…
Bestandsgrootte 8.9 KB
Aantal Installaties 12
Huidige Versie 1.1
Laatst Bijgewerkt 2016-02-16
Publicatiedatum 2016-02-16
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar valentin.alekseev
Betalingswijze free
Help Pagina-URL https://github.com/valentinalexeev/chrome-sametab
Ondersteunde Talen 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"
    ]
}