Link Shortcuts

Access common urls by typing a shortcut name

Link Shortcuts là gì?

Link Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi pminkov, và tính năng chính của nó là "Access common urls by typing a shortcut name".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Link Shortcuts

Tải xuống các tệp mở rộng Link Shortcuts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Link Shortcuts Link Shortcuts
ID bceohjonbodagliebplenbfjlapegaei
URL Chính Thức https://chrome.google.com/webstore/detail/link-shortcuts/bceohjonbodagliebplenbfjlapegaei
Mô tả Access common urls by typing a shortcut name
Kích Thước Tệp 66.75 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 1.0.9
Cập Nhật Lần Cuối 2017-02-17
Ngày Phát Hành 2017-02-17
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển pminkov
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pminkov/chrome-link-shortcuts
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}