MoTa

A very simple extension to move tabs around with your keyboard

MoTa란 무엇입니까?

MoTa은(는) T.S.Foster에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A very simple extension to move tabs around with your keyboard"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        MOTA

INTRODUCTION
MoTa allows you to move and pin your tabs with the keyboard. It is designed to supplement the excellent Vimium (other keyboard shortcut extensions are available), which unfortunately has no support for managing tabs this way. The shortcuts are vi-like.

THE FUTURE
Currently you cannot change the shortcuts for this extension, but if I get many requests for this (or for more friendly shortcuts) at [email protected] (two Ls), I will add this feature. I may also add command repetition (e.g. 3 moves current tab three to the right). Oh, and if Vimium adds this functionality, I will not use this extension myself.

SHORCUTS
: Move current tab to beginning of window
: Move current tab to end of window
: Move current tab left
: Move current tab right
: Move current tab out to new window
: Move current tab in to next window
: Pin/Unpin current tab                    

확장 프로그램 기본 정보

이름 MoTa MoTa
ID fbbmbjbjagakiioegcimkfjepkamhpph
공식 URL https://chromewebstore.google.com/detail/mota/fbbmbjbjagakiioegcimkfjepkamhpph
설명 A very simple extension to move tabs around with your keyboard
파일 크기 8.9 KB
설치 횟수 147
현재 버전 1.1.2
최근 업데이트 2022-12-14
출시 날짜 2013-09-24
평점 4.20/5 총 10 개의 평점
개발자 T.S.Foster
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MoTa",
    "version": "1.1.2",
    "manifest_version": 2,
    "description": "A very simple extension to move tabs around with your keyboard",
    "permissions": [],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "mover.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "listener.js"
            ]
        }
    ]
}