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