Create Link

Copy current page URL to clipboard in various formats.

Create Link란 무엇입니까?

Create Link은(는) ku에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy current page URL to clipboard in various formats."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        (Tested on OSX, WindowsXP, Windows7/64bit)
Make HTML link tag easily like Firefox addon Make Link.

Copy current page title and URL to clipboard in various formats.
*plain text ([page title] [page URL])
*HTML link ([page title]
*markdown
*mediawiki

In extension options page, you can configure formats and shortcut key.

Source code is available at http://github.com/ku/CreateLink
Tweet @ku if something is wrong with Create Link                    

확장 프로그램 기본 정보

이름 Create Link Create Link
ID gcmghdmnkfdbncmnmlkkglmnnhagajbm
공식 URL https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm
설명 Copy current page URL to clipboard in various formats.
파일 크기 32.25 KB
설치 횟수 40,175
현재 버전 0.5.7
최근 업데이트 2022-01-12
출시 날짜 2017-07-25
평점 4.25/5 총 166 개의 평점
개발자 ku
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://twitter.com/ku/
도움말 페이지 URL http://github.com/ku/CreateLink
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Create Link",
    "version": "0.5.7",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/service-worker.js"
    },
    "action": {
        "default_icon": "icon64.png",
        "default_title": "Create Link",
        "default_popup": "popup.html"
    },
    "description": "Copy current page URL to clipboard in various formats.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "commands": {
        "current-tab-link": {
            "description": "Current tab in default format"
        }
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "clipboardWrite"
    ]
}