Tab Label
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Co to jest Tab Label?
Tab Label to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Tab Label
Pobierz pliki rozszerzeń Tab Label 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 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.
Podstawowe informacje o rozszerzeniu
Nazwa | Tab Label |
ID | jenllplbncahmaikpkppcikmfadialdk |
Oficjalny URL | https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk |
Opis | This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with… |
Rozmiar pliku | 7.58 KB |
Liczba instalacji | 252 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2020-04-28 |
Data Publikacji | 2020-04-25 |
Ocena | 2.14/5 Łącznie 7 Oceny |
Deweloper | Unknown |
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 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" ] } |