Tab Rename
Adds the ability to change the title of your tabs
O que é Tab Rename?
Tab Rename é uma extensão do Chrome desenvolvida por Realyze, e sua principal característica é "Adds the ability to change the title of your tabs".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab Rename
Baixe arquivos de extensão Tab Rename no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
Informações Básicas da Extensão
Nome | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
URL Oficial | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
Descrição | Adds the ability to change the title of your tabs |
Tamanho do Arquivo | 12.24 KB |
Contagem de Instalações | 551 |
Versão Atual | 1.0 |
Última Atualização | 2021-02-23 |
Data de Publicação | 2021-02-22 |
Classificação | 3.17/5 Total de 6 Avaliações |
Desenvolvedor | Realyze |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } } } |