Tab Label

This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…

Was ist Tab Label?

Tab Label ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".

Erweiterungsscreenshots

screenshot
screenshot

Tab Label-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Label-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

                        This extension allow you to rename tab title. 

This is very useful extension especially in case you have multiple tabs opened with similar title. So you can make them more distinct by changing their title.                    

Grundlegende Informationen zur Erweiterung

Name Tab Label Tab Label
ID jenllplbncahmaikpkppcikmfadialdk
Offizielle URL https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk
Beschreibung This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Dateigröße 7.58 KB
Installationsanzahl 252
Aktuelle Version 0.0.1
Letztes Update 2020-04-28
Veröffentlichungsdatum 2020-04-25
Bewertung 2.14/5 Insgesamt 7 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Label",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}