Switch Tab Shortcut

Customize chrome shortcut to switch tabs

Switch Tab Shortcut क्या है?

Switch Tab Shortcut Stanley Guevara द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customize chrome shortcut to switch tabs"।

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

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

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

                        Simple extension for switching to next/previous tab.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

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

नाम Switch Tab Shortcut Switch Tab Shortcut
ID pfeobfgjcmcpgkodpodibnggeanmoddk
आधिकारिक URL https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk
विवरण Customize chrome shortcut to switch tabs
फ़ाइल का आकार 3.37 KB
स्थापना संख्या 27
वर्तमान संस्करण 1.0
अंतिम अपडेट 2016-10-16
प्रकाशन तिथि 2016-10-16
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Stanley Guevara
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/stanleyguevara/chrome-switch-tab-shortcut
सहायता पृष्ठ URL https://github.com/stanleyguevara/chrome-switch-tab-shortcut
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switch Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to switch tabs",
    "commands": {
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right",
                "mac": "Command+Right"
            },
            "description": "Next tab"
        },
        "prev-tab": {
            "suggested_key": {
                "default": "Ctrl+Left",
                "mac": "Command+Left"
            },
            "description": "Prev tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}