Link Shortcuts

Access common urls by typing a shortcut name

Link Shortcuts란 무엇입니까?

Link Shortcuts은(는) pminkov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Access common urls by typing a shortcut name"입니다.

확장 프로그램 스크린샷

screenshot

Link Shortcuts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        No need to remember long web addresses or look through your bookmarks. Just associate a web page with a short name and go to the page by typing the short name.

Type the keyword "go", tab/space and start typing.

To add a new shortcut, click on the extension icon and add it in the menu.                    

확장 프로그램 기본 정보

이름 Link Shortcuts Link Shortcuts
ID bceohjonbodagliebplenbfjlapegaei
공식 URL https://chrome.google.com/webstore/detail/link-shortcuts/bceohjonbodagliebplenbfjlapegaei
설명 Access common urls by typing a shortcut name
파일 크기 66.75 KB
설치 횟수 73
현재 버전 1.0.9
최근 업데이트 2017-02-17
출시 날짜 2017-02-17
평점 4.00/5 총 4 개의 평점
개발자 pminkov
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/pminkov/chrome-link-shortcuts
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Shortcuts",
    "description": "Access common urls by typing a shortcut name",
    "version": "1.0.9",
    "omnibox": {
        "keyword": "go"
    },
    "browser_action": [],
    "icons": {
        "16": "icons\/Icons-03-16x16.png",
        "48": "icons\/Icons-03-48x48.png",
        "128": "icons\/Icons-03-128x128.png"
    },
    "background": {
        "scripts": [
            "message_names.js",
            "bookmark_utils.js",
            "dataset.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "message_names.js",
                "content.js"
            ]
        }
    ],
    "commands": {
        "go": {
            "suggested_key": {
                "default": "Ctrl+K",
                "mac": "MacCtrl+K"
            },
            "description": "Go to a page"
        }
    },
    "web_accessible_resources": [
        "popup.html"
    ],
    "permissions": [
        "tabs",
        "storage",
        "bookmarks"
    ]
}