MultiLinks Shortcut

This extension speed up opening several tabs you daily use.

MultiLinks Shortcut क्या है?

MultiLinks Shortcut jrochelly द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension speed up opening several tabs you daily use."।

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

screenshot

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

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

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

                        Multilink is a simple extension that lets you open several web pages at once.

Just save the links you want on options page, than just click on multilink icon and ta-da.
You can add as many pages as you want.

Visit https://github.com/jrochelly/multilinks for troubleshooting and how to get involved.                    

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

नाम MultiLinks Shortcut MultiLinks Shortcut
ID ddfoagnhebpbidjkganhgninciiecgon
आधिकारिक URL https://chromewebstore.google.com/detail/multilinks-shortcut/ddfoagnhebpbidjkganhgninciiecgon
विवरण This extension speed up opening several tabs you daily use.
फ़ाइल का आकार 49.66 KB
स्थापना संख्या 1,193
वर्तमान संस्करण 0.3.2
अंतिम अपडेट 2015-07-02
प्रकाशन तिथि 2015-07-01
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर jrochelly
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MultiLinks Shortcut",
    "description": "This extension speed up opening several tabs you daily use.",
    "version": "0.3.2",
    "options_page": "options.html",
    "commands": {
        "toggle-feature": {
            "description": "Open links",
            "suggested_key": {
                "default": "Alt+Shift+L",
                "mac": "Alt+Shift+L"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/jquery.com\/*"
            ],
            "js": [
                "js\/jquery.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/ajax.googleapis.com\/"
    ]
}