Clickable Links

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

Clickable Links란 무엇입니까?

Clickable Links은(는) https://www.laurentvw.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turns unclickable urls & email addresses into clickable ones. We linkify them!"입니다.

확장 프로그램 스크린샷

screenshot

Clickable Links 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Clickable Links Clickable Links
ID mgamelhnfokapndfdodnmfiningckjia
공식 URL https://chromewebstore.google.com/detail/clickable-links/mgamelhnfokapndfdodnmfiningckjia
설명 Turns unclickable urls & email addresses into clickable ones. We linkify them!
파일 크기 57.51 KB
설치 횟수 33,298
현재 버전 2.9
최근 업데이트 2023-04-26
출시 날짜 2014-09-29
평점 3.85/5 총 188 개의 평점
개발자 https://www.laurentvw.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.laurentvw.com/project/clickable-links
개인정보 보호 정책 페이지 URL http://www.laurentvw.com/project/clickable-links
지원되는 언어 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"
            ]
        }
    ]
}