Tabs HotSpot

Tabs HotSpot provides Quick Access to a Tab you need via Immediate Search within Opened Tabs.

Tabs HotSpot란 무엇입니까?

Tabs HotSpot은(는) Pavel Reva에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tabs HotSpot provides Quick Access to a Tab you need via Immediate Search within Opened Tabs."입니다.

확장 프로그램 스크린샷

screenshot

Tabs HotSpot 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        How to use:
1) Press Alt+F
2) Type few letters you remember from Title or URL of the tab you want to go to
3) Select tab from search results using keyboard Up/Down arrows or mouse and press Enter

Extra feature:
Alt+Shift+F - allows to immediately switch back the previous tab you've moved from

Notes:
- There are some technical pages where Chrome disables any scripting, e.g. Extensions, Settings, New Tab, Chrome Webstore and etc. If you hit Alt+F on such pages, then search will appear in new tab and will be closed after you've selected a tab to move to
- Hotkeys specified above are set by default. But due to hotkeys policy, which has 'suggestive' nature rather than 'must be', after installing this extension Chrome might decide to not apply some hotkeys. In this case I suggest you to go to Tools->Extensions then scroll down to the bottom of that page and click on 'Configure commands'. Set there:
1) Alt+F for 'Open Tabs HotSpot'
2) Alt+Shift+F for 'Switch back'
These hotkeys are suggested for better experience. However, you can set any hotkey you want, just keep in mind possible conflicts with existing hotkeys:
For Windows (https://support.google.com/chrome/bin/answer.py?hl=en&answer=157179&topic=25799&ctx=topic)
For Mac (https://support.google.com/chrome/bin/answer.py?hl=en&answer=165450&topic=25799&ctx=topic)
For Linux (https://support.google.com/chrome/bin/answer.py?hl=en&answer=171571&topic=25799&ctx=topic)                    

확장 프로그램 기본 정보

이름 Tabs HotSpot Tabs HotSpot
ID iinmbankjdcbecmdljnmglpkcbdlfdgh
공식 URL https://chromewebstore.google.com/detail/tabs-hotspot/iinmbankjdcbecmdljnmglpkcbdlfdgh
설명 Tabs HotSpot provides Quick Access to a Tab you need via Immediate Search within Opened Tabs.
파일 크기 133 KB
설치 횟수 110
현재 버전 0.0.5
최근 업데이트 2013-06-14
출시 날짜 2013-06-14
평점 4.00/5 총 17 개의 평점
개발자 Pavel Reva
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs HotSpot",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Tabs HotSpot provides Quick Access to a Tab you need via Immediate Search within Opened Tabs.",
    "background": {
        "scripts": [
            "assets\/libs\/jquery-1.9.1.min.js",
            "assets\/libs\/ga.js",
            "assets\/libs\/gajsd.js",
            "controllers\/background.js"
        ]
    },
    "options_page": "views\/search.html",
    "browser_action": {
        "default_icon": "assets\/img\/icon-128.png",
        "default_title": "Tabs HotSpot (Alt+F)"
    },
    "icons": {
        "16": "assets\/img\/icon-16.png",
        "48": "assets\/img\/icon-48.png",
        "128": "assets\/img\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "tab-search": {
            "suggested_key": {
                "default": "Alt+F",
                "mac": "Alt+F",
                "windows": "Alt+F",
                "chromeos": "Alt+F",
                "linux": "Alt+F"
            },
            "description": "Open Tabs HotSpot"
        },
        "switch-back": {
            "suggested_key": {
                "default": "Alt+Shift+F",
                "mac": "Alt+Shift+F",
                "windows": "Alt+Shift+F",
                "chromeos": "Alt+Shift+F",
                "linux": "Alt+Shift+F"
            },
            "description": "Switch back"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self' https:\/\/www.google.com",
    "web_accessible_resources": [
        "assets\/libs\/jquery-1.9.1.min.js",
        "assets\/libs\/jquery-ui-1.10.1.custom.min.js",
        "assets\/libs\/ga.js",
        "assets\/libs\/gajsd.js",
        "assets\/img\/bg-pattern.png",
        "assets\/styles\/search.css",
        "views\/search.html",
        "controllers\/background.js",
        "controllers\/search.js",
        "controllers\/content-script.js"
    ]
}