Simple Tab Renamer

A simple chrome tab renamer extension

Simple Tab Renamerคืออะไร?

Simple Tab Renamer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย arshad และคุณลักษณะหลักของมันคือ "A simple chrome tab renamer extension"

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

screenshot

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

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

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

                        Lets you rename the title of the any tab. Very handy when you feel your tab title need more descriptive or personalized names. 
Also, the title sticks to the tab even if you navigate to a different page within the same tab!
Note: This may not work on websites (Ex: chrome webstore, facebook etc) which do not get affected by this tab title change.                    

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

ชื่อ Simple Tab Renamer Simple Tab Renamer
ID ailhpmlejogfdcpoflidmobgkgdemaog
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simple-tab-renamer/ailhpmlejogfdcpoflidmobgkgdemaog
คำอธิบาย A simple chrome tab renamer extension
ขนาดไฟล์ 27.37 KB
จำนวนการติดตั้ง 14,055
เวอร์ชันปัจจุบัน 2.2
อัปเดตครั้งล่าสุด 2022-06-02
วันที่เผยแพร่ 2017-08-01
คะแนน 3.51/5 รวมทั้งหมด 59 คะแนน
ผู้พัฒนา arshad
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.2",
    "name": "Simple Tab Renamer",
    "description": "A simple chrome tab renamer extension",
    "browser_action": {
        "default_icon": ".\/styles\/extension_icon.png",
        "default_popup": "extension_content.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/styles\/extension_icon.png",
        "48": ".\/styles\/extension_icon.png",
        "128": ".\/styles\/extension_icon.png"
    },
    "background": {
        "scripts": [
            "background_script.js"
        ]
    },
    "permissions": []
}