Tab Namer

Renames tabs to: " ".

Tab Namerคืออะไร?

Tab Namer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย James Stout และคุณลักษณะหลักของมันคือ "Renames tabs to: " "."

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

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

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

                        Renames all tabs to follow a standard format: "  ". It is simple and reliable, but if you are looking for something configurable then this is not the extension for you.                    

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

ชื่อ Tab Namer Tab Namer
ID mhlkchmeabcgmaedklpajbokfaapcgoo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-namer/mhlkchmeabcgmaedklpajbokfaapcgoo
คำอธิบาย Renames tabs to: " ".
ขนาดไฟล์ 4.84 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2018-05-26
วันที่เผยแพร่ 2018-05-26
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา James Stout
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Namer",
    "version": "1.2",
    "description": "Renames tabs to: \"  \".",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ]
}