Simple Tab Renamer
A simple chrome tab renamer extension
Co to jest Simple Tab Renamer?
Simple Tab Renamer to rozszerzenie Chrome opracowane przez arshad, a jego główną funkcją jest „A simple chrome tab renamer extension”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Simple Tab Renamer
Pobierz pliki rozszerzeń Simple Tab Renamer 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
Lets you rename the title of the any tab. Very handy when you feel your tab title need more descriptive or personalized names. Also, the title sticks to the tab even if you navigate to a different page within the same tab! Note: This may not work on websites (Ex: chrome webstore, facebook etc) which do not get affected by this tab title change.
Podstawowe informacje o rozszerzeniu
Nazwa | Simple Tab Renamer |
ID | ailhpmlejogfdcpoflidmobgkgdemaog |
Oficjalny URL | https://chromewebstore.google.com/detail/simple-tab-renamer/ailhpmlejogfdcpoflidmobgkgdemaog |
Opis | A simple chrome tab renamer extension |
Rozmiar pliku | 27.37 KB |
Liczba instalacji | 14,055 |
Aktualna Wersja | 2.2 |
Ostatnia Aktualizacja | 2022-06-02 |
Data Publikacji | 2017-08-01 |
Ocena | 3.51/5 Łącznie 59 Oceny |
Deweloper | arshad |
[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, "version": "2.2", "name": "Simple Tab Renamer", "description": "A simple chrome tab renamer extension", "browser_action": { "default_icon": ".\/styles\/extension_icon.png", "default_popup": "extension_content.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "icons": { "16": ".\/styles\/extension_icon.png", "48": ".\/styles\/extension_icon.png", "128": ".\/styles\/extension_icon.png" }, "background": { "scripts": [ "background_script.js" ] }, "permissions": [] } |