MoTa

A very simple extension to move tabs around with your keyboard

MoTaคืออะไร?

MoTa เป็นส่วนขยายของ Chrome ที่พัฒนาโดย T.S.Foster และคุณลักษณะหลักของมันคือ "A very simple extension to move tabs around with your keyboard"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MoTa

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}