MultiLinks Shortcut

This extension speed up opening several tabs you daily use.

什么是MultiLinks Shortcut?

MultiLinks Shortcut是由jrochelly开发的Chrome扩展程序,该扩展的主要功能是“This extension speed up opening several tabs you daily use.”。

扩展截图

screenshot

下载MultiLinks Shortcut扩展crx文件

下载MultiLinks Shortcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/"
    ]
}