Tab Rename
Adds the ability to change the title of your tabs
Was ist Tab Rename?
Tab Rename ist eine Chrome-Erweiterung, die von Realyze entwickelt wurde, und ihr Hauptmerkmal ist "Adds the ability to change the title of your tabs".
Erweiterungsscreenshots
Tab Rename-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tab Rename-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 is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
Grundlegende Informationen zur Erweiterung
Name | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
Offizielle URL | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
Beschreibung | Adds the ability to change the title of your tabs |
Dateigröße | 12.24 KB |
Installationsanzahl | 551 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-02-23 |
Veröffentlichungsdatum | 2021-02-22 |
Bewertung | 3.17/5 Insgesamt 6 Bewertungen |
Entwickler | Realyze |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } } } |