Smart Tab Manager

Smart Tab Manager assists users to manage their Chrome tabs efficiently.

Smart Tab Managerคืออะไร?

Smart Tab Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dwghanzogak และคุณลักษณะหลักของมันคือ "Smart Tab Manager assists users to manage their Chrome tabs efficiently."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Smart Tab Manager is powerful assistant for managing your Chrome tabs efficiently!
You can easily preview, search, open, close, separate, merge, suspend, order your tabs by using command line!

Use Ctrl+Shift+H to open 'Command Selection Popup'
Use Ctrl+Shift+E to open 'Command Box'                    

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

ชื่อ Smart Tab Manager Smart Tab Manager
ID lahbgnkbojlfaocemjpkjgmdcnmpkfgc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/smart-tab-manager/lahbgnkbojlfaocemjpkjgmdcnmpkfgc
คำอธิบาย Smart Tab Manager assists users to manage their Chrome tabs efficiently.
ขนาดไฟล์ 467 KB
จำนวนการติดตั้ง 746
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2017-02-24
วันที่เผยแพร่ 2017-02-24
คะแนน 3.00/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา dwghanzogak
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smart Tab Manager",
    "version": "0.1.0",
    "description": "Smart Tab Manager assists users to manage their Chrome tabs efficiently.",
    "background": {
        "scripts": [
            "src\/js\/jquery.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "resources\/favicon.png",
        "default_title": "Smart Tab Manager",
        "default_popup": "src\/html\/manager.html"
    },
    "icons": {
        "128": "resources\/favicon.png"
    },
    "omnibox": {
        "keyword": "tabby"
    },
    "chrome_url_overrides": {
        "newtab": "src\/html\/dashboard.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/js\/contents.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/html\/command_box.html",
        "resources\/favicon.png"
    ],
    "commands": {
        "show_command_box": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "windows": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "show command box"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "windows": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            }
        }
    }
}