Tab Label
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Apa itu Tab Label?
Tab Label adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tab Label
Unduh file ekstensi Tab Label dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Tab Label |
ID | jenllplbncahmaikpkppcikmfadialdk |
URL Resmi | https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk |
Deskripsi | This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with… |
Ukuran File | 7.58 KB |
Jumlah Instalasi | 252 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2020-04-28 |
Tanggal Publikasi | 2020-04-25 |
Penilaian | 2.14/5 Total 7 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |