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文件

下載MoTa擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}