Keyboard Shortcuts to Reorder Tabs

Reorder shortcuts using ctrl-shift pgup/pgdn on Windows/Mac just like you can already do in Linux.

Keyboard Shortcuts to Reorder Tabsคืออะไร?

Keyboard Shortcuts to Reorder Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bonstio.net และคุณลักษณะหลักของมันคือ "Reorder shortcuts using ctrl-shift pgup/pgdn on Windows/Mac just like you can already do in Linux."

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keyboard Shortcuts to Reorder Tabs

ดาวน์โหลดไฟล์ส่วนขยาย Keyboard Shortcuts to Reorder Tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        What's New?

Works on Chrome OS only now that other OS support this natively.

About

Chrome on most operating systems lets you re-order your tabs using the keyboard shortcuts ctrl-shift-pgup and ctrl-shift-pgdn. However, if you use ChromeOS these shortcuts are not available to you. This tiny, unobtrusive extension fixes that.

Shortcuts

  Move active tab left - ctrl-shift-pgup
  Move active tab right - ctrl-shift-pgdn
  Move active tab to first position - ctrl-shift-1
  Move active tab to last position - ctrl-shift-9
  Move active tab to nth position - ctrl-shift-<2..8>

Changelog

v2.01
 - Fixed for Mac

v2.0
  - Manifest v3 support
  - Only needed on Chrome OS now!

v1.7 Thanks Yonathon Randolph!
  - Listen on keydown instead of keyup
  - Update to manifest verison 2
  - Prevent events from reaching webpage
  - Minor code cleanup

F.A.Q.

  Q:  It's not working on this page!
  A:  Please note that NO Chrome extensions with a content script (such as this) are allowed to run in the Google Chrome Webstore (i.e. this page!) 

  Q:  It's not working on other pages!
  A:  Tabs you had open prior to installing this extensions need to be reloaded before this will work. Otherwise check your org's policy on Chrome extension as it may be restricted by your administrator.


  Q:  I sync my extensions across different Operating Systems. Will this break things on e.g. Windows?
  A:  No. The extension does nothing on Linux to avoid ctrl-shift-pgup/down moving the tab twice.

  Q:  Still having problems?
  A:  Let me know and I will fix it. Don't make me ask for obvious details though. I would need browser version and operating system. Did you try it with no other extensions installed?                    

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

ชื่อ Keyboard Shortcuts to Reorder Tabs Keyboard Shortcuts to Reorder Tabs
ID moigagbiaanpboaflikhdhgdfiifdodd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/moigagbiaanpboaflikhdhgdfiifdodd
คำอธิบาย Reorder shortcuts using ctrl-shift pgup/pgdn on Windows/Mac just like you can already do in Linux.
ขนาดไฟล์ 41.79 KB
จำนวนการติดตั้ง 3,841
เวอร์ชันปัจจุบัน 2.01
อัปเดตครั้งล่าสุด 2024-01-31
วันที่เผยแพร่ 2015-04-08
คะแนน 3.84/5 รวมทั้งหมด 115 คะแนน
ผู้พัฒนา https://bonstio.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://bonstio.net
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Shortcuts to Reorder Tabs",
    "version": "2.01",
    "manifest_version": 3,
    "description": "Reorder shortcuts using ctrl-shift pgup\/pgdn on Windows\/Mac just like you can already do in Linux.",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabreorder.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}