Clickable Links

Turns unclickable urls & email addresses into clickable ones. We linkify them!

Clickable Links là gì?

Clickable Links là một tiện ích mở rộng Chrome được phát triển bởi https://www.laurentvw.com, và tính năng chính của nó là "Turns unclickable urls & email addresses into clickable ones. We linkify them!".

Ả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 Clickable Links

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

                        Clickable Links is a Chrome extension that solves the common problem of unclickable URLs on certain websites by automatically converting them into clickable links. 

The extension supports various URI schemes such as http://, https://, ftp://, file://, magnet: and email addresses, making them accessible with a single click. This eliminates the need to copy and paste links, thus saving you time.

Also works with incomplete urls where the "http://"-part isn't included.

To try out the extension, visit this page for some examples: https://www.laurentvw.com/project/clickable-links

New since v2.7:
- Several bug fixes related to url matching
- Added support for file:// and magnet: uri schemes
- Options: An option to allow links to be opened in a new tab                    

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

Tên Clickable Links Clickable Links
ID mgamelhnfokapndfdodnmfiningckjia
URL Chính Thức https://chromewebstore.google.com/detail/clickable-links/mgamelhnfokapndfdodnmfiningckjia
Mô tả Turns unclickable urls & email addresses into clickable ones. We linkify them!
Kích Thước Tệp 57.51 KB
Số Lần Cài Đặt 33,298
Phiên Bản Hiện Tại 2.9
Cập Nhật Lần Cuối 2023-04-26
Ngày Phát Hành 2014-09-29
Đánh Giá 3.85/5 Tổng số 188 Đánh Giá
Nhà Phát Triển https://www.laurentvw.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.laurentvw.com/project/clickable-links
URL Trang Chính Sách Bảo Mật http://www.laurentvw.com/project/clickable-links
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clickable Links",
    "version": "2.9",
    "manifest_version": 3,
    "description": "Turns unclickable urls & email addresses into clickable ones. We linkify them!",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "optional_permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.google.com\/*",
                "*:\/\/*.google.ca\/*",
                "*:\/\/*.google.co.uk\/*",
                "*:\/\/*.google.com.au\/*",
                "*:\/\/*.google.co.jp\/*",
                "*:\/\/*.google.de\/*",
                "*:\/\/*.google.fr\/*",
                "*:\/\/*.google.be\/*",
                "*:\/\/*.google.nl\/*",
                "*:\/\/*.bing.com\/*",
                "*:\/\/*.acidtests.org\/*",
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery.ba-replacetext.js",
                "content.js"
            ]
        }
    ]
}