MoTa

A very simple extension to move tabs around with your keyboard

MoTa là gì?

MoTa là một tiện ích mở rộng Chrome được phát triển bởi T.S.Foster, và tính năng chính của nó là "A very simple extension to move tabs around with your keyboard".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MoTa

Tải xuống các tệp mở rộng MoTa dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MoTa MoTa
ID fbbmbjbjagakiioegcimkfjepkamhpph
URL Chính Thức https://chromewebstore.google.com/detail/mota/fbbmbjbjagakiioegcimkfjepkamhpph
Mô tả A very simple extension to move tabs around with your keyboard
Kích Thước Tệp 8.9 KB
Số Lần Cài Đặt 147
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2022-12-14
Ngày Phát Hành 2013-09-24
Đánh Giá 4.20/5 Tổng số 10 Đánh Giá
Nhà Phát Triển T.S.Foster
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}