Tab Rename
Adds the ability to change the title of your tabs
Co to jest Tab Rename?
Tab Rename to rozszerzenie Chrome opracowane przez Realyze, a jego główną funkcją jest „Adds the ability to change the title of your tabs”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Tab Rename
Pobierz pliki rozszerzeń Tab Rename w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
Podstawowe informacje o rozszerzeniu
Nazwa | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
Oficjalny URL | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
Opis | Adds the ability to change the title of your tabs |
Rozmiar pliku | 12.24 KB |
Liczba instalacji | 551 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2021-02-23 |
Data Publikacji | 2021-02-22 |
Ocena | 3.17/5 Łącznie 6 Oceny |
Deweloper | Realyze |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } } } |