TabList Manager

TabList Manager

TabList Manager란 무엇입니까?

TabList Manager은(는) https://whatever-will-be-que-sera-sera.tumblr.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "TabList Manager"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

TabList Manager 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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",
        ""
    ]
}