Tab Titler 2.0

Tab Titler 2.0

Tab Titler 2.0คืออะไร?

Tab Titler 2.0 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tim และคุณลักษณะหลักของมันคือ "Tab Titler 2.0"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Titler 2.0

ดาวน์โหลดไฟล์ส่วนขยาย Tab Titler 2.0 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension lets you change the title of a tab on the go and manage them over time.

Press ALT + SHIFT + S to automatically begin renaming a tab. 
Renames will persist and last for as long as you want! 
View the options page to manage all your saved tab aliases. 

Browser to Browser Renaming - if you're logged into Chrome your saved names come with you!

Its dead simple. No extra fluff and no unnecessary banter - it does the job and the way you want it done!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tab Titler 2.0 Tab Titler 2.0
ID aolhnnheicpbohggibkibdmfdkmkaocc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-titler-20/aolhnnheicpbohggibkibdmfdkmkaocc
คำอธิบาย Tab Titler 2.0
ขนาดไฟล์ 42.11 KB
จำนวนการติดตั้ง 234
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-02-02
วันที่เผยแพร่ 2019-01-29
คะแนน 4.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Tim
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Titler 2.0",
    "version": "1.0",
    "description": "Tab Titler 2.0",
    "icons": {
        "16": "tab16.png",
        "48": "tab48.png",
        "128": "tab128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "commands": {
        "rename_tab": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Save a Tab Name"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}