Tab Renamer

Customize the title of your chrome tabs

Tab Renamerคืออะไร?

Tab Renamer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mujtaba Al-Tameemi และคุณลักษณะหลักของมันคือ "Customize the title of your chrome tabs"

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

screenshot

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

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

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

                        If you want to customize the title of your tabs, this extension is for you. 

There are 3 ways to use it:
1. Click on the extension's icon in the top right corner of your browser.
2. Use the shortcut "control/command + B".
3. Type "RN" in chrome's address bar and press tab.                    

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

ชื่อ Tab Renamer Tab Renamer
ID npdnpkaiegjmocaekcdffkilfmfpedih
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-renamer/npdnpkaiegjmocaekcdffkilfmfpedih
คำอธิบาย Customize the title of your chrome tabs
ขนาดไฟล์ 13.15 KB
จำนวนการติดตั้ง 217
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2016-12-24
วันที่เผยแพร่ 2016-12-23
คะแนน 2.89/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Mujtaba Al-Tameemi
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "short_name": "Tab Renamer",
    "author": "Mujtaba Al-Tameemi",
    "description": "Customize the title of your chrome tabs",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "omnibox": {
        "keyword": "rn"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}