Link With Context

Copy the text of a link and its hyperlink as one.

Link With Context란 무엇입니까?

Link With Context은(는) mrjaeger00에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy the text of a link and its hyperlink as one."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Link With Context 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Link With Context lets you provide some context for the links you share.  This is done in 1 of 2 ways:

PLEASE NOTE: After initially installing Link With Context, it will not work on any currently open tabs until they are refreshed.

Copying a link outright: Using Link With Context when you copy a link, what is actually copied is text in the form ' "text of link" -  '.  Ultra useful for sharing reddit links that only make sense if the title is included as well! (and the inspiration for this extensions).

Highlighting text: Using Links With Context on highlighted text, what is actually coped is text in the form ' "highlighted text" -  '.  This will work with any text - you could highlight the whole page and still get a working Link With Context.

There is however a limit to how much text can be copied at a time, and therefore only the first 7500 characters of the highlighted/link text will be included.                    

확장 프로그램 기본 정보

이름 Link With Context Link With Context
ID ghpdiolckpncfliklbmgiljggbokjban
공식 URL https://chromewebstore.google.com/detail/link-with-context/ghpdiolckpncfliklbmgiljggbokjban
설명 Copy the text of a link and its hyperlink as one.
파일 크기 9.59 KB
설치 횟수 749
현재 버전 0.1.1
최근 업데이트 2014-09-10
출시 날짜 2014-09-10
평점 3.75/5 총 8 개의 평점
개발자 mrjaeger00
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link With Context",
    "short_name": "LWC",
    "description": "Copy the text of a link and its hyperlink as one.",
    "version": "0.1.1",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "64": "icon_64.png"
    }
}