URL shortcuts

Gives shortcut and autosuggestions for urls. Convenient for developers who often use simmilar URLs (different pages - same domain)

URL shortcuts là gì?

URL shortcuts là một tiện ích mở rộng Chrome được phát triển bởi 1978milan.babic, và tính năng chính của nó là "Gives shortcut and autosuggestions for urls. Convenient for developers who often use simmilar URLs (different pages - same domain)".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng URL 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

                        Very convenient for web developers.

From a list (lists) that user edits - search on autosuggest creates link that is going to be modified.
You are practicaly creating new URL from parts already entered as suggestions.

- First you create your working project base URL (you can use http shortcuts already present to speed up this step). 
- Once you have created it, browser will automaticaly open new tab with your projects base URL.
- Second time you open extension, you'll see that projects base URL has been set, and you can now easily open some pages with that project base.
- If you choose to enter something else that is not on "extensions url" list, you'll see that this extension will remember your part of URL and save it to you suggestions for some other browsings.
- If you want to change your projects base URL - just hit escape button when focused on input

This extension should speed up your development proccess.

For the fastest performance please create shortcut on plugins page in your browser - like on the intro image.                    

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

Tên URL shortcuts URL shortcuts
ID fcgkfcbneccampcdkeokbihfajficegm
URL Chính Thức https://chromewebstore.google.com/detail/url-shortcuts/fcgkfcbneccampcdkeokbihfajficegm
Mô tả Gives shortcut and autosuggestions for urls. Convenient for developers who often use simmilar URLs (different pages - same domain)
Kích Thước Tệp 62.03 KB
Số Lần Cài Đặt 119
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2018-03-24
Ngày Phát Hành 2018-03-24
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển 1978milan.babic
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL shortcuts",
    "short_name": "URL short",
    "description": "Gives shortcut and autosuggestions for urls. Convenient for developers who often use simmilar URLs (different pages - same domain)",
    "version": "3.0",
    "browser_action": {
        "default_icon": {
            "16": ".\/icons\/icon16.png",
            "48": ".\/icons\/icon48.png",
            "64": ".\/icons\/icon64.png",
            "128": ".\/icons\/icon128.png"
        },
        "default_title": "URL shortcuts"
    },
    "icons": {
        "16": ".\/icons\/icon16.png",
        "48": ".\/icons\/icon48.png",
        "64": ".\/icons\/icon64.png",
        "128": ".\/icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        }
    },
    "background": {
        "scripts": [
            ".\/background\/background.js"
        ]
    }
}