Tab Rename
Adds the ability to change the title of your tabs
Vad är Tab Rename?
Tab Rename är en Chrome-tillägg utvecklad av Realyze, och dess huvudfunktion är "Adds the ability to change the title of your tabs".
Tilläggsskärmbilder
Ladda ner Tab Rename-förlängningens CRX-fil
Ladda ner Tab Rename-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
Grundläggande Information om Tillägg
Namn | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
Officiell webbadress | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
Beskrivning | Adds the ability to change the title of your tabs |
Filstorlek | 12.24 KB |
Antal Installationer | 551 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2021-02-23 |
Publiceringsdatum | 2021-02-22 |
Betyg | 3.17/5 Totalt 6 Betyg |
Utvecklare | Realyze |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } } } |