Copy Rich Link

Copy the page title and URL as rich text.

Copy Rich Link란 무엇입니까?

Copy Rich Link은(는) r7kamura에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy the page title and URL as rich text."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Copy the page title and URL as rich text.

Useful for pasting links to Slack, Google Docs, etc.

## Usage

Click the extension icon or execute the keyboard shortcut to copy the link to the page as rich text.

## Keyboard shortcut

The default keyboard shortcut is Ctrl + Shift + L, and Command + Shift + L on Mac.
This can be changed from the browser's extension settings.

## Plain text fallback

As a fallback, we also copy in plain text format in the form `"{title}" {url}`,
so that if you paste where rich text is not available or paste explicitly as plain text (Ctrl + Shift + V on Windows), this plain text format will be pasted.                    

확장 프로그램 기본 정보

이름 Copy Rich Link Copy Rich Link
ID hikiamlgpdcabppakpmemaofmkgknpea
공식 URL https://chromewebstore.google.com/detail/copy-rich-link/hikiamlgpdcabppakpmemaofmkgknpea
설명 Copy the page title and URL as rich text.
파일 크기 12.4 KB
설치 횟수 253
현재 버전 0.1.0
최근 업데이트 2022-05-07
출시 날짜 2022-05-07
평점 5.00/5 총 1 개의 평점
개발자 r7kamura
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/r7kamura/copy-rich-link
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Rich Link",
    "description": "Copy the page title and URL as rich text.",
    "version": "0.1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            }
        }
    },
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ]
}