Tab Rename
Adds the ability to change the title of your tabs
What is Tab Rename?
Tab Rename is a Chrome extension developed by Realyze, and its main feature is "Adds the ability to change the title of your tabs".
Extension Screenshots
Download Tab Rename Extension CRX File
Download Tab Rename extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
Extension Basic Information
Name | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
Official URL | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
Description | Adds the ability to change the title of your tabs |
File Size | 12.24 KB |
Installation Count | 551 |
Current Version | 1.0 |
Last Updated | 2021-02-23 |
Publish Date | 2021-02-22 |
Rating | 3.17/5 Total 6 Ratings |
Developer | Realyze |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } } } |