Tab Modifier

Take control of your tabs

Tab Modifierคืออะไร?

Tab Modifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrome-webstore-publisher-furybee และคุณลักษณะหลักของมันคือ "Take control of your tabs"

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

screenshot
screenshot
screenshot

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

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

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

                        This extension is open-source! Contribute on https://github.com/sylouuu/chrome-tab-modifier

Take control of your tabs:

- Rename tab
- Change tab icon
- Pin tab
- Prevent tab closing
- Unique tab
- Mute tab

You have to define your rules from the Options page. Quick rename can be done by right-clicking anywhere in the page and click on "Rename Tab".

Changelog: https://github.com/sylouuu/chrome-tab-modifier/releases

About Permissions: All websites are required as the extension needs to update each visited website to do its job. I don't store anything about you, your rules are saved on your computer.

The Options page contains a Google Analytics script to help me to know how this page is used. It's totally anonymized. Feel free to contact me on the GitHub project.                    

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

ชื่อ Tab Modifier Tab Modifier
ID hcbgadmbdkiilgpifjgcakjehmafcjai
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-modifier/hcbgadmbdkiilgpifjgcakjehmafcjai
คำอธิบาย Take control of your tabs
ขนาดไฟล์ 87.28 KB
จำนวนการติดตั้ง 80,000
เวอร์ชันปัจจุบัน 0.22.0
อัปเดตครั้งล่าสุด 2018-03-01
วันที่เผยแพร่ 2018-03-01
คะแนน 4.46/5 รวมทั้งหมด 331 คะแนน
ผู้พัฒนา chrome-webstore-publisher-furybee
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sylouuu/chrome-tab-modifier
URL หน้าช่วยเหลือ https://github.com/sylouuu/chrome-tab-modifier/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Modifier",
    "version": "0.22.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/sylouuu\/chrome-tab-modifier",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_48.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'",
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus"
    ]
}