Chrome tabs switcher

Chrome extension for easy switching between tabs

Chrome tabs switcher란 무엇입니까?

Chrome tabs switcher은(는) Vasili Molakhau에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension for easy switching between tabs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Chrome tabs switcher 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome extension for easy switching between tabs.

Features:
- Shows all tabs in all opened windows (including incognito if appropriate checkbox is selected on chrome://extensions page).
- Allows to filter tabs list with help of text entered in search field.
- Each tab item listed in application includes page title, url and favicon (except cases when current page is loaded via https, but favicon is hosted via http - to prevent mixed content on the page.)
- Allows to close any of listed tabs from the application.
- Allows to navigate between listed tabs via ArrowDown/ArrowUp, Tab/Shift+Tab keys.

Usage:
- Install via chrome web store
- Refresh page to ensure extension script has been loaded
- Use key combination Ctrl + B (will be improved in further versions) to open application
- Apply filter if necessary
- Choose tab you want to switch to and click on it
- Click on the cross icon to close desired tab.

Roadmap:
- Add keyboard support for tabs closing functionality
- Improve keyboard interactions inside application
- Add dynamic configuration for application appearance and functionality                    

확장 프로그램 기본 정보

이름 Chrome tabs switcher Chrome tabs switcher
ID blnlokddecelmlhfpnmeekjcfdfapmjl
공식 URL https://chromewebstore.google.com/detail/chrome-tabs-switcher/blnlokddecelmlhfpnmeekjcfdfapmjl
설명 Chrome extension for easy switching between tabs
파일 크기 126 KB
설치 횟수 223
현재 버전 0.7.6
최근 업데이트 2017-02-18
출시 날짜 2017-02-18
평점 2.89/5 총 9 개의 평점
개발자 Vasili Molakhau
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dashukin/chrome-tabs-switcher
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome tabs switcher",
    "version": "0.7.6",
    "default_locale": "en",
    "description": "Chrome extension for easy switching between tabs",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "author": "Vasili Molakhau ",
    "background": {
        "scripts": [
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/contentstyles.css"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "current_locale": "'en'",
    "incognito": "spanning",
    "offline_enabled": true,
    "permissions": [
        "tabs"
    ],
    "short_name": "Tabs",
    "storage": [],
    "tts_engine": [],
    "web_accessible_resources": []
}