TabZ

This extension is for people who have too many tabs open and need something to help them manage their browser.

TabZคืออะไร?

TabZ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Batbouta และคุณลักษณะหลักของมันคือ "This extension is for people who have too many tabs open and need something to help them manage their browser."

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

screenshot

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

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

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

                        This is a chrome extension to help manage too many tabs being open. This will provide users a popup window with all the users tabs open in an easy to read manner. This extension will organize your tabs in the window in alphabetical order and categorized in a logical manner. You can then just click on the name of your page to change your current page to that, or even close the pages. 

This extension was also built with Matt Poegel.                    

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

ชื่อ TabZ TabZ
ID inneckpdjbcjkpijhomijlmddbailhcd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tabz/inneckpdjbcjkpijhomijlmddbailhcd
คำอธิบาย This extension is for people who have too many tabs open and need something to help them manage their browser.
ขนาดไฟล์ 428 KB
จำนวนการติดตั้ง 32
เวอร์ชันปัจจุบัน 2.1.1
อัปเดตครั้งล่าสุด 2015-03-14
วันที่เผยแพร่ 2015-03-14
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Andrew Batbouta
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TabZ",
    "manifest_version": 2,
    "version": "2.1.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "stylesheets\/style.css",
                "stylesheets\/options_style.css"
            ],
            "js": [
                "javascript\/jquery-1.11.0.js",
                "javascript\/script.js",
                "javascript\/options_script.js"
            ]
        }
    ],
    "description": "This extension is for people who have too many tabs open and need something to help them manage their browser.",
    "browser_action": {
        "default_icon": "images\/icon16.png",
        "default_title": "Tabz",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "tabCapture",
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+K",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        }
    }
}