Tab Rename
Adds the ability to change the title of your tabs
Apa itu Tab Rename?
Tab Rename adalah ekstensi Chrome yang dikembangkan oleh Realyze, dan fitur utamanya adalah "Adds the ability to change the title of your tabs".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tab Rename
Unduh file ekstensi Tab Rename 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 is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
Informasi Dasar Ekstensi
Nama | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
URL Resmi | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
Deskripsi | Adds the ability to change the title of your tabs |
Ukuran File | 12.24 KB |
Jumlah Instalasi | 551 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2021-02-23 |
Tanggal Publikasi | 2021-02-22 |
Penilaian | 3.17/5 Total 6 Penilaian |
Pengembang | Realyze |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } } } |