Copy Link

Copy links and page urls with text from context menu

Copy Link란 무엇입니까?

Copy Link은(는) axmet180에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy links and page urls with text from context menu"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension provides an ability to edit Context Menu for links.

Context Menu is edited in the extension Options window.

In Options you can:
 - create new Context Menu item by specifying its Title and Macros
 - edit Context Menu item Title and Macros
 - delete Item

Menu Item Macros can contain {u} and {t} macros, which will be replaced by link URL and link Text respectively.

If you want to support this extension, there is paypal me page - https://www.paypal.me/niyaz17

var 5.4.0
---------
+ selection shortcutted option


var 5.3.0
---------
+ open options page in new tab

var 5.2.0
---------
+ drag and drop sorting of context menu items 

var 5.1.0
---------
+ copy links info from selection

ver 5.0.0
---------
+ multiline macros
+ edit functionality

ver 4.1.2
---------
+ shortcut to copy hovered link                    

확장 프로그램 기본 정보

이름 Copy Link Copy Link
ID mjpbijfgaajfmabmfnabchojdlpfnbbi
공식 URL https://chromewebstore.google.com/detail/copy-link/mjpbijfgaajfmabmfnabchojdlpfnbbi
설명 Copy links and page urls with text from context menu
파일 크기 1.03 MB
설치 횟수 13,232
현재 버전 5.5.2
최근 업데이트 2020-04-03
출시 날짜 2020-03-30
평점 3.89/5 총 81 개의 평점
개발자 axmet180
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL http://www.example.com
지원되는 언어 en,ru,uk,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "5.5.2",
    "background": {
        "scripts": [
            "js\/clipboard.js",
            "js\/action.js",
            "js\/background.js",
            "js\/app.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/links.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_descr__",
    "icons": {
        "128": "res\/link128.png",
        "16": "res\/link16.png",
        "48": "res\/link48.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus",
        "storage",
        "",
        "tabs"
    ],
    "commands": {
        "copy-link-text": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "copy hovered link text"
        }
    }
}