Tab Label
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
What is Tab Label?
Tab Label is a Chrome extension developed by Unknown, and its main feature is "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".
Extension Screenshots
Download Tab Label Extension CRX File
Download Tab Label 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 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.
Extension Basic Information
Name | Tab Label |
ID | jenllplbncahmaikpkppcikmfadialdk |
Official URL | https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk |
Description | This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with… |
File Size | 7.58 KB |
Installation Count | 252 |
Current Version | 0.0.1 |
Last Updated | 2020-04-28 |
Publish Date | 2020-04-25 |
Rating | 2.14/5 Total 7 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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" ] } |