Tab Rename

Adds the ability to change the title of your tabs

Wat is Tab Rename?

Tab Rename is een Chrome-extensie ontwikkeld door Realyze, en de belangrijkste functie is "Adds the ability to change the title of your tabs".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Tab Rename

Download Tab Rename-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

                        This is a simple extension to rename the active tab.

It works by changing the title attribute of the DOM.                    

Basisinformatie over de Extensie

Naam Tab Rename Tab Rename
ID lgoehggcekcijojdfdifnfknonmeillp
Officiële URL https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp
Beschrijving Adds the ability to change the title of your tabs
Bestandsgrootte 12.24 KB
Aantal Installaties 551
Huidige Versie 1.0
Laatst Bijgewerkt 2021-02-23
Publicatiedatum 2021-02-22
Beoordeling 3.17/5 Totaal 6 Beoordelingen
Ontwikkelaar Realyze
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Rename",
    "description": "Adds the ability to change the title of your tabs",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "icons": {
        "16": "icons\/tag16.png",
        "48": "icons\/pen-icon48.png",
        "128": "icons\/pen-icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/tag16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "rename.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+R"
            }
        }
    }
}