TabList Manager

TabList Manager

TabList Managerคืออะไร?

TabList Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://whatever-will-be-que-sera-sera.tumblr.com และคุณลักษณะหลักของมันคือ "TabList Manager"

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

screenshot
screenshot
screenshot

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

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

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

                        View all your open tabs in a list.
    
     

v4.0 bugfix
  
   

Shortcut Keys
      
Alt+Z = Popup
Alt+Z+Shift = SideBar on/off
      
-----------------------
     
SideBar Menu
     
IFrame Menu
    
Tab Stack
**tab stack not working in IFrame Menu
   
     
    
Disable shortcut keys
-----------------------
Open chrome://extensions/
Find the "Extension keyboard shortcuts" button in the bottom right.
Find the TabList Manager Section
Delete shortcut Key                    

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

ชื่อ TabList Manager TabList Manager
ID nfldfdiecanfehfklddallboddlhedgh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tablist-manager/nfldfdiecanfehfklddallboddlhedgh
คำอธิบาย TabList Manager
ขนาดไฟล์ 447 KB
จำนวนการติดตั้ง 697
เวอร์ชันปัจจุบัน 4.5
อัปเดตครั้งล่าสุด 2015-04-16
วันที่เผยแพร่ 2015-04-16
คะแนน 3.83/5 รวมทั้งหมด 18 คะแนน
ผู้พัฒนา https://whatever-will-be-que-sera-sera.tumblr.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TabList Manager",
    "version": "4.5",
    "description": "TabList Manager",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "TabList Manager",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Z"
            },
            "description": "Send tab command"
        },
        "myCommand_sidewindow": {
            "suggested_key": {
                "default": "Alt+Shift+Z"
            },
            "description": "Send tabs command"
        }
    },
    "web_accessible_resources": [
        "menu.png",
        "stack.html",
        "popup.html",
        "iframe.html"
    ],
    "content_security_policy": "script-src 'self'; connect-src *; img-src *; frame-src *; object-src 'self'",
    "permissions": [
        "chrome:\/\/favicon\/*",
        "tabs",
        ""
    ]
}