Chrome Tab Renamer

Chrome Tab Renamer allows you to update the name of tabs in your browser.

Chrome Tab Renamerคืออะไร?

Chrome Tab Renamer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wcchristian และคุณลักษณะหลักของมันคือ "Chrome Tab Renamer allows you to update the name of tabs in your browser."

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

screenshot
screenshot

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

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

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

                        If you have ever lost track of multiple tabs of the same site, this extension can help! 

* Persists tabs even if you navigate to a different page if you wish.
* Remove renames and go back to the original tab title.
* Options page allows you to view renamed tabs and clear them.                    

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

ชื่อ Chrome Tab Renamer Chrome Tab Renamer
ID jbjkejjogkedpjendhaccnccmeiafied
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-tab-renamer/jbjkejjogkedpjendhaccnccmeiafied
คำอธิบาย Chrome Tab Renamer allows you to update the name of tabs in your browser.
ขนาดไฟล์ 15.17 KB
จำนวนการติดตั้ง 1,624
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2018-11-17
วันที่เผยแพร่ 2018-11-11
คะแนน 3.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา wcchristian
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Tab Renamer",
    "version": "1.3",
    "description": "Chrome Tab Renamer allows you to update the name of tabs in your browser.",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            ".\/background\/background.js"
        ],
        "persistent": false
    },
    "omnibox": {
        "keyword": "r"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Shift+Ctrl+E",
                "mac": "Shift+Command+E"
            }
        }
    },
    "browser_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_icon": {
            "16": "images\/logo_16.png",
            "32": "images\/logo_32.png",
            "48": "images\/logo_48.png",
            "128": "images\/logo_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/content\/content.js"
            ]
        }
    ],
    "options_page": ".\/options\/options.html",
    "icons": {
        "16": "images\/logo_16.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "manifest_version": 2
}