Tab Titler 2.0
Tab Titler 2.0
Co to jest Tab Titler 2.0?
Tab Titler 2.0 to rozszerzenie Chrome opracowane przez Tim, a jego główną funkcją jest „Tab Titler 2.0”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Tab Titler 2.0
Pobierz pliki rozszerzeń Tab Titler 2.0 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 extension lets you change the title of a tab on the go and manage them over time. Press ALT + SHIFT + S to automatically begin renaming a tab. Renames will persist and last for as long as you want! View the options page to manage all your saved tab aliases. Browser to Browser Renaming - if you're logged into Chrome your saved names come with you! Its dead simple. No extra fluff and no unnecessary banter - it does the job and the way you want it done!
Podstawowe informacje o rozszerzeniu
Nazwa | Tab Titler 2.0 |
ID | aolhnnheicpbohggibkibdmfdkmkaocc |
Oficjalny URL | https://chromewebstore.google.com/detail/tab-titler-20/aolhnnheicpbohggibkibdmfdkmkaocc |
Opis | Tab Titler 2.0 |
Rozmiar pliku | 42.11 KB |
Liczba instalacji | 234 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2019-02-02 |
Data Publikacji | 2019-01-29 |
Ocena | 4.33/5 Łącznie 3 Oceny |
Deweloper | Tim |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Titler 2.0", "version": "1.0", "description": "Tab Titler 2.0", "icons": { "16": "tab16.png", "48": "tab48.png", "128": "tab128.png" }, "permissions": [ "tabs", "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "main.js" ] } ], "commands": { "rename_tab": { "suggested_key": { "default": "Alt+Shift+S" }, "description": "Save a Tab Name" } }, "options_ui": { "page": "options.html", "open_in_tab": true } } |