Tab Rename
Adds the ability to change the title of your tabs
Tab Renameคืออะไร?
Tab Rename เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Realyze และคุณลักษณะหลักของมันคือ "Adds the ability to change the title of your tabs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Rename
ดาวน์โหลดไฟล์ส่วนขยาย Tab Rename ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
คำอธิบาย | Adds the ability to change the title of your tabs |
ขนาดไฟล์ | 12.24 KB |
จำนวนการติดตั้ง | 551 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-02-23 |
วันที่เผยแพร่ | 2021-02-22 |
คะแนน | 3.17/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Realyze |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" } } } } |