Move Tab Left

This extension allows you to put the current tab at the beggining of the tab bar.

Move Tab Left क्या है?

Move Tab Left mp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to put the current tab at the beggining of the tab bar."।

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

screenshot

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

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

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

                        Very often you need to move the current tab to the beginning of the tab bar, to the left.

This extension allows you to put the tab at the first position, moves it to the left, with just a click of a button or with a keyboard shortcut.

By default the keyboard shortcut is set to ctrl + left_arrow, to change it go to Settings -> Extensions -> Keyboard Shortcuts (it's at the bottom).

Update V2:
- Added context menus to put tab in first, second and third place. So if you want to move the tab to the left to the second spot you can right click the extension icon and hit "2. Put in second place".                    

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

नाम Move Tab Left Move Tab Left
ID flgjflnifhabbdliblomhkhoplfhheie
आधिकारिक URL https://chromewebstore.google.com/detail/move-tab-left/flgjflnifhabbdliblomhkhoplfhheie
विवरण This extension allows you to put the current tab at the beggining of the tab bar.
फ़ाइल का आकार 7.64 KB
स्थापना संख्या 207
वर्तमान संस्करण 2.1
अंतिम अपडेट 2016-08-28
प्रकाशन तिथि 2016-08-28
रेटिंग 4.00/5 कुल 4 रेटिंग्स
डेवलपर mp
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://brostack.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Move Tab Left",
    "description": "This extension allows you to put the current tab at the beggining of the tab bar.",
    "version": "2.1",
    "browser_action": {
        "default_icon": {
            "38": "icon38.png"
        },
        "default_title": "Move Tab Left"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "move_tab": {
            "suggested_key": {
                "default": "Ctrl+Left",
                "mac": "Command+Left"
            },
            "description": "Put tab at the beginning"
        }
    }
}