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…

Was ist SameTab - keep only one copy of the tab open?

SameTab - keep only one copy of the tab open ist eine Chrome-Erweiterung, die von valentin.alekseev entwickelt wurde, und ihr Hauptmerkmal ist "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-Erweiterungs-CRX-Datei herunterladen

Laden Sie SameTab - keep only one copy of the tab open-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name SameTab - keep only one copy of the tab open SameTab - keep only one copy of the tab open
ID egndhnnhgedkbnkdfjpakgpclhbjcjfb
Offizielle URL https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb
Beschreibung 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…
Dateigröße 8.9 KB
Installationsanzahl 12
Aktuelle Version 1.1
Letztes Update 2016-02-16
Veröffentlichungsdatum 2016-02-16
Bewertung 3.50/5 Insgesamt 2 Bewertungen
Entwickler valentin.alekseev
Zahlungsart free
Hilfeseite URL https://github.com/valentinalexeev/chrome-sametab
Unterstützte Sprachen 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"
    ]
}