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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/"
    ]
}