Rearrange Tabs

Allows users to rearrange tabs using keyboard shortcuts

Rearrange Tabs क्या है?

Rearrange Tabs Mohnish Thallavajhula द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows users to rearrange tabs using keyboard shortcuts"।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Rearrange Tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        🎉 🎉 Rearrange Tabs 3.0.0 🎉 🎉 

Rearrange Tabs is a tiny Google Chrome Extension that allows users
to rearrange the position of the tabs in a window by moving them
around using keyboard shortcuts.

🚨 IMPORTANT NOTE 🚨 
Please reconfigure your keyboard shortcuts if your previously set combinations are wiped out after upgrading to 3.0.0!

Customize your keyboard shortcut by following these steps:

1. Go to `chrome://extensions/shortcuts`
2. Scroll down to locate `Rearrange Tabs`.
3. Click in the greyed out fields for `Not set`.
4. Press the desired key combination to create a new shortcut.

To move selected tab(s) left
Mac: Ctrl+CMD+Left
Windows: Shift+Alt+Left

To move selected tab(s) right
Mac: Ctrl+CMD+Right
Windows: Shift+Alt+Right

To move selected tab(s) to the front (leftmost position)
Mac: Ctrl+CMD+Up
Windows: Shift+Alt+Up

To move selected tab(s) to the end (rightmost position)
Mac: Ctrl+CMD+Down
Windows: Shift+Alt+Down

Features:

- Move regular tabs around in a window
- Move pinned tabs around in a window
- Move multiple highlighted tabs around in a window
- Move selected tabs to the leftmost or the rightmost positions


3.0.0 / 2023-02-14 (Valentine's Day Release)
==================

  * Complete rewrite!
  * Fixes bugs and performance issues
  * Changes default key combo for Mac users to avoid conflict

2.1.7 / 2020-04-26
==================

  * Fix errors on mac chrome 81.0.4044.92

2.1.6 / 2018-08-19
==================

  * update commands in script to reflect the new namespace

2.1.5 / 2018-08-19
==================

  * namespace the shortcuts with the "rt-" prefix. This fixes the bug that caused the shortcuts to reset after installing of 2.1.2. This only affected users who were upgrading from an existing version of rearrange tabs extension. New installs are not affected.

2.1.2 / 2018-08-11
==================

  * Fix versioning

2.1.0 / 2018-07-05
==================

  * Add feature to move tabs to the front or the end of the tab bar (Issue #3)

2.0.0 / 2017-10-21
==================

  * removing permission block from manifest since it is not needed to rearrange tabs (Issue #19)
  * Create CODE_OF_CONDUCT.md
  * update license
  * include lifehacker and changelog links

1.4.1 / 2016-11-18
==================

  * change icon color

1.4.0 / 2016-10-11
==================

  - Add support for moving several tabs at once
  - Fixed an issue where tab move did not cycle when tab is the rightmost tab and is moved to the right

1.2.0 / 2016-04-15
==================

  * Add support for pinned tabs
  * prioritize mac over windows

1.1.0 / 2015-06-03
==================

  * update key on Mac to Ctrl+Shift+ to avoid conflict with the shortcut to highlight a single word

1.0.0 / 2015-03-22
==================

* Initial release
* Add support for rearranging tabs using keyboard shortcuts                    

एक्सटेंशन की मूल जानकारी

नाम Rearrange Tabs Rearrange Tabs
ID ccnnhhnmpoffieppjjkhdakcoejcpbga
आधिकारिक URL https://chromewebstore.google.com/detail/rearrange-tabs/ccnnhhnmpoffieppjjkhdakcoejcpbga
विवरण Allows users to rearrange tabs using keyboard shortcuts
फ़ाइल का आकार 7.41 KB
स्थापना संख्या 12,116
वर्तमान संस्करण 3.0.0
अंतिम अपडेट 2023-02-17
प्रकाशन तिथि 2020-04-26
रेटिंग 4.75/5 कुल 150 रेटिंग्स
डेवलपर Mohnish Thallavajhula
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://iam.mt/rearrange-tabs
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rearrange Tabs",
    "version": "3.0.0",
    "description": "Allows users to rearrange tabs using keyboard shortcuts",
    "author": "Mohnish Thallavajhula",
    "manifest_version": 3,
    "short_name": "Rearrange Tabs",
    "background": {
        "service_worker": "rearrange.js"
    },
    "commands": {
        "rtl": {
            "suggested_key": {
                "default": "Shift+Alt+Left",
                "windows": "Shift+Alt+Left",
                "mac": "Command+MacCtrl+Left"
            },
            "description": "Move selected tab(s) left"
        },
        "rtr": {
            "suggested_key": {
                "default": "Shift+Alt+Right",
                "windows": "Shift+Alt+Right",
                "mac": "Command+MacCtrl+Right"
            },
            "description": "Move selected tab(s) right"
        },
        "rtf": {
            "suggested_key": {
                "default": "Shift+Alt+Up",
                "windows": "Shift+Alt+Up",
                "mac": "Command+MacCtrl+Up"
            },
            "description": "Move selected tab(s) to the front"
        },
        "rtb": {
            "suggested_key": {
                "default": "Shift+Alt+Down",
                "windows": "Shift+Alt+Down",
                "mac": "Command+MacCtrl+Down"
            },
            "description": "Move selected tab(s) to the back"
        }
    },
    "action": {
        "default_icon": "icon16.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}