Tab Label
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Hvad er Tab Label?
Tab Label er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".
Udvidelsesskærmbilleder
Download Tab Label-udvidelses-CRX-fil
Download Tab Label-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Tab Label |
ID | jenllplbncahmaikpkppcikmfadialdk |
Officiel URL | https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk |
Beskrivelse | This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with… |
Filstørrelse | 7.58 KB |
Antal Installationer | 252 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2020-04-28 |
Udgivelsesdato | 2020-04-25 |
Bedømmelse | 2.14/5 Samlet 7 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |