Move Tab Hotkeys (Chrome Number Pad Keys)

Hotkeys to move tabs around

Move Tab Hotkeys (Chrome Number Pad Keys)คืออะไร?

Move Tab Hotkeys (Chrome Number Pad Keys) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jonathon.merz และคุณลักษณะหลักของมันคือ "Hotkeys to move tabs around"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Move Tab Hotkeys (Chrome Number Pad Keys)

ดาวน์โหลดไฟล์ส่วนขยาย Move Tab Hotkeys (Chrome Number Pad Keys) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Adds shortcut keys to move the current tab or a group of selected tabs around the tab bar.

This is a variant of the Move Tab Hotkeys extension (https://chrome.google.com/webstore/detail/move-tab-hotkeys/paafmjjgeiociknojggclhkbkaffjgoe). This adds additional commands for moving the tab to the first or last position on the Tab bar to work around Chrome's limitation of 4 keyboard commands per extension.

The following hotkeys are provided:
* Alt+Shift+NumPad-0 (with NumLock on): Move tab to the start of the tab bar
* Alt+Shift+NumPad-0 (with NumLock off): Move tab to the start of the tab bar
* Alt+Shift+NumPad-9 (with NumLock on): Move tab to the end of the tab bar
* Alt+Shift+NumPad-9 (with NumLock off): Move tab to the end of the tab bar

These keys can be changed in Chrome's extensions keyboard shortcuts page.

Multi-Selected Tabs:
If you select multiple tabs at once, you can move them as a group. This can be turned off on the Options page if you prefer to only move the current tab even when others are selected.

Notes on Pinned Tabs:
   * If you have any pinned tabs, pinned tabs and non-pinned tabs are treated like separate tab bars. Non-pinned tabs move to start/end of the non-pinned tabs section.
   * If multiple tab selection is enabled and you select a group containing both pinned and non-pinned tabs, no movement will be possible.

-------------------------
Version History:
2.2.0:
* Add ability to move multiple tabs at once if multiple are selected.

2.0.0:
* Fix logic to correctly disable tab wrapping for the first tab in the bar.

1.2.0:
* Fix ability to use the the number pad for 0/9 in shortcuts for Firefox.
* Add a variant of this extension to Chrome to work around Chrome's restriction to 4 keyboard commands.

1.1.0:
* Add option to disable tab wrapping at start/end of tab bar.

1.0.0:
* Initial version                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Move Tab Hotkeys (Chrome Number Pad Keys) Move Tab Hotkeys (Chrome Number Pad Keys)
ID omhajbebapbleblliebjpmddcmalofgp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/move-tab-hotkeys-chrome-n/omhajbebapbleblliebjpmddcmalofgp
คำอธิบาย Hotkeys to move tabs around
ขนาดไฟล์ 38.7 KB
จำนวนการติดตั้ง 23
เวอร์ชันปัจจุบัน 2.2.1
อัปเดตครั้งล่าสุด 2018-11-17
วันที่เผยแพร่ 2018-11-16
ผู้พัฒนา jonathon.merz
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jmmerz/move-tab-hotkeys
URL หน้าช่วยเหลือ https://github.com/jmmerz/move-tab-hotkeys
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Move Tab Hotkeys (Chrome Number Pad Keys)",
    "description": "Hotkeys to move tabs around",
    "homepage_url": "https:\/\/github.com\/jmmerz\/move-tab-hotkeys",
    "manifest_version": 2,
    "version": "2.2.1",
    "author": "Jonathon Merz",
    "icons": {
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "common\/browserCompatibility.js",
            "common\/globalOptions.js",
            "moveTabs.js"
        ]
    },
    "commands": {
        "move-tab-first-numpad-numlock-on": {
            "suggested_key": {
                "default": "Alt+Insert"
            },
            "description": "Move the selected tab(s) to the start (Numeric Keypad with NumLock On)"
        },
        "move-tab-first-numpad-numlock-off": {
            "suggested_key": {
                "default": "Alt+Shift+Insert"
            },
            "description": "Move the selected tab(s) to the start (Numeric Keypad with NumLock Off)"
        },
        "move-tab-last-numpad-numlock-on": {
            "suggested_key": {
                "default": "Alt+PageUp"
            },
            "description": "Move the selected tab(s) to the end (Numeric Keypad with NumLock On)"
        },
        "move-tab-last-numpad-numlock-off": {
            "suggested_key": {
                "default": "Alt+Shift+PageUp"
            },
            "description": "Move the selected tab(s) to the end (Numeric Keypad with NumLock Off)"
        }
    },
    "options_ui": {
        "page": "options\/options.html"
    }
}