Tab Label
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Wat is Tab Label?
Tab Label is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".
Extensie Screenshots
Download het CRX-bestand van de extensie Tab Label
Download Tab Label-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Tab Label |
ID | jenllplbncahmaikpkppcikmfadialdk |
Officiële URL | https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk |
Beschrijving | This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with… |
Bestandsgrootte | 7.58 KB |
Aantal Installaties | 252 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2020-04-28 |
Publicatiedatum | 2020-04-25 |
Beoordeling | 2.14/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |