Copy link

Copies a formatted link to the current tab onto the clipboard.

Copy link란 무엇입니까?

Copy link은(는) Tim Dierks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copies a formatted link to the current tab onto the clipboard."입니다.

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

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

확장 프로그램 사용 설명서

                        When you click this extension's icon, it will copy the current tab's URL to the clipboard, formatted so it can be pasted into a document or email message as a link, with the tab's title as the text of the link and the tab's URL as the target of the link. It also supports copying the tab's title and link as a Markdown-formatted string suitable for pasting into Markdown documents.                    

확장 프로그램 기본 정보

이름 Copy link Copy link
ID cgkebkmimknmkflnkcdagamcifjnbfne
공식 URL https://chromewebstore.google.com/detail/copy-link/cgkebkmimknmkflnkcdagamcifjnbfne
설명 Copies a formatted link to the current tab onto the clipboard.
파일 크기 17.71 KB
설치 횟수 229
현재 버전 1.0
최근 업데이트 2017-01-28
출시 날짜 2017-01-28
평점 3.50/5 총 2 개의 평점
개발자 Tim Dierks
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tdierks/copy-url-ext
도움말 페이지 URL https://github.com/tdierks/copy-url-ext/blob/master/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy link",
    "description": "Copies a formatted link to the current tab onto the clipboard.",
    "author": "Tim Dierks ",
    "version": "1.0",
    "homepage_url": "https:\/\/github.com\/tdierks\/copy-url-ext",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Copy formatted link"
    },
    "background": {
        "page": "copy-url.html",
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+C"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}