LinkSuppressor: Make Any Link Selectable

A lightweight extension that makes any link selectable while [Alt], [Meta], or [Command] key is pressed.

LinkSuppressor: Make Any Link Selectable란 무엇입니까?

LinkSuppressor: Make Any Link Selectable은(는) Hiroshi Yamamoto에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A lightweight extension that makes any link selectable while [Alt], [Meta], or [Command] key is pressed."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

LinkSuppressor: Make Any Link Selectable 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        LinkSuppressor enables an intuitive partial link selection by suppressing Chrome's "Drag & Drop Link" feature. All you have to do is selecting a link text with any of [Alt]/[Window]/[Command] key being pressed. Since this extension temporarily suppresses a single unwanted feature, any of the meta information associated with the original text won't be lost when you copy-and-paste into other rich-text editors.

Usage:

 * Windows : Press [Alt] while selecting a link
 * Mac OS X: Press [Alt] or [Command] while selecting a link
 * Other   : Press [Alt] or [Meta] while selecting a link

Release Note:

1.0.4
    * now works on windows / linux
    * added a hack for news.gogle.com
    * adjust the timing when the first listener is added.
1.0.0
    * built for mac testers                    

확장 프로그램 기본 정보

이름 LinkSuppressor: Make Any Link Selectable LinkSuppressor: Make Any Link Selectable
ID jffdmjmhkinopagcjgfjjfoagglhnhff
공식 URL https://chromewebstore.google.com/detail/linksuppressor-make-any-l/jffdmjmhkinopagcjgfjjfoagglhnhff
설명 A lightweight extension that makes any link selectable while [Alt], [Meta], or [Command] key is pressed.
파일 크기 13.2 KB
설치 횟수 791
현재 버전 1.0.4
최근 업데이트 2014-02-11
출시 날짜 2014-02-11
평점 3.27/5 총 11 개의 평점
개발자 Hiroshi Yamamoto
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hyamamoto/linksuppressor
도움말 페이지 URL https://github.com/hyamamoto/linksuppressor/issues
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "LinkSuppressor",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "version": "1.0.4",
    "author": "Hiroshi Yamamoto",
    "icons": {
        "19": "icons\/selectable19.png",
        "128": "icons\/selectable.png"
    },
    "permissions": [
        ""
    ],
    "content_scripts": [
        {
            "js": [
                "src\/link_suppressor.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "icons\/selectable19.png"
    ]
}