Simple Tab Switcher

A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.

Simple Tab Switcher란 무엇입니까?

Simple Tab Switcher은(는) JmQu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Simple Tab Switcher 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A FREE and SIMPLE tab switcher which enables a shortcut to switch the current tab to previous one. In addition, an extra shortcut to switch the current tab across different windows is also available.

- The default shortcut to switch tabs is [Alt + q] (Option + q) on MacOs.
- The default shortcut to switch windows is [Alt + w] (Option + w) on MacOs.

*P.S.* You can change it through the *chrome://extensions/shortcuts*.

It is open source at https://github.com/SanCoder-Q/tab-switcher                    

확장 프로그램 기본 정보

이름 Simple Tab Switcher Simple Tab Switcher
ID jmihjpkeaeknejefhonkbgldenaplegj
공식 URL https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj
설명 A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
파일 크기 24.19 KB
설치 횟수 62
현재 버전 0.2.1
최근 업데이트 2022-09-24
출시 날짜 2019-03-04
평점 5.00/5 총 2 개의 평점
개발자 JmQu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/SanCoder-Q/tab-switcher
도움말 페이지 URL https://github.com/SanCoder-Q/tab-switcher
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Tab Switcher",
    "description": "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.",
    "version": "0.2.1",
    "icons": {
        "16": "resources\/90.png",
        "48": "resources\/90.png",
        "128": "resources\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "resources\/90.png",
            "48": "resources\/90.png",
            "128": "resources\/128.png"
        }
    },
    "background": {
        "scripts": [
            "bundle.min.js"
        ]
    },
    "commands": {
        "switchTab": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Switch to recent tab"
        },
        "moveTabCrossWindow": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Move current tab to next window"
        }
    },
    "permissions": [
        "storage",
        "commands",
        "tabs"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "homepage_url": "https:\/\/github.com\/SanCoder-Q\/tab-switcher"
}