Copy Link With Title

This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.

Copy Link With Title란 무엇입니까?

Copy Link With Title은(는) Paul Cohn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        * Copy a link with the title for pasting into a notetaking app for clearer notes
* Copy as HTML and paste into code
* Copy as Markdown and paste into Reddit or Github
* Define your own format for whatever crazy schemes you have

Update 2021/08/25:
* Updated icon for better visibility in dark mode.

Update 2020/01/17:
* Newlines work!                    

확장 프로그램 기본 정보

이름 Copy Link With Title Copy Link With Title
ID cfbjnjeaoamknmdojhgcblkebcphmcei
공식 URL https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei
설명 This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
파일 크기 58.18 KB
설치 횟수 1,412
현재 버전 1.0.2
최근 업데이트 2021-08-25
출시 날짜 2020-01-16
평점 3.54/5 총 13 개의 평점
개발자 Paul Cohn
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/paulsterr
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy Link With Title",
    "description": "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}