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
官方網址 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\/"
    ]
}