Create Link

Copy current page URL to clipboard in various formats.

Create Link là gì?

Create Link là một tiện ích mở rộng Chrome được phát triển bởi ku, và tính năng chính của nó là "Copy current page URL to clipboard in various formats.".

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

screenshot
screenshot
screenshot

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

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

                        (Tested on OSX, WindowsXP, Windows7/64bit)
Make HTML link tag easily like Firefox addon Make Link.

Copy current page title and URL to clipboard in various formats.
*plain text ([page title] [page URL])
*HTML link ([page title]
*markdown
*mediawiki

In extension options page, you can configure formats and shortcut key.

Source code is available at http://github.com/ku/CreateLink
Tweet @ku if something is wrong with Create Link                    

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

Tên Create Link Create Link
ID gcmghdmnkfdbncmnmlkkglmnnhagajbm
URL Chính Thức https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm
Mô tả Copy current page URL to clipboard in various formats.
Kích Thước Tệp 32.25 KB
Số Lần Cài Đặt 40,175
Phiên Bản Hiện Tại 0.5.7
Cập Nhật Lần Cuối 2022-01-12
Ngày Phát Hành 2017-07-25
Đánh Giá 4.25/5 Tổng số 166 Đánh Giá
Nhà Phát Triển ku
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://twitter.com/ku/
URL Trang Trợ Giúp http://github.com/ku/CreateLink
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Create Link",
    "version": "0.5.7",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/service-worker.js"
    },
    "action": {
        "default_icon": "icon64.png",
        "default_title": "Create Link",
        "default_popup": "popup.html"
    },
    "description": "Copy current page URL to clipboard in various formats.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "commands": {
        "current-tab-link": {
            "description": "Current tab in default format"
        }
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "clipboardWrite"
    ]
}