Copy URL with Title (plain text/markdown)

Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown.

Copy URL with Title (plain text/markdown)란 무엇입니까?

Copy URL with Title (plain text/markdown)은(는) https://takashyx.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Copy URL with Title (plain text/markdown) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        --------------------------------------------------------------------------------
UPDATES
--------------------------------------------------------------------------------
Ver 1.1.1.1:
FIX: Description on chrome web store

Ver 1.1.1.0:
ADD: Duration settings for notification

Ver 1.1.0.6:
FIX: Workaround for non-https pages

Ver 1.1.0.5:
FIX:   Correction of the phenomenon that text is not copied to the clipboard
ADD: Option menu
ADD: New customizable toast UI
--------------------------------------------------------------------------------
FEATURES
--------------------------------------------------------------------------------
1. Copy title and URL in text format
Control+C(Win/Linux) / Command+C(Mac)

2. Copy in markdown link format
Alt+C(Win/Linux) / Option+C(Mac)

3. Normal copy
Select -> Control+C(Win/Linux) / Command+C(Mac) 

4.Settings
Right click the extension icon -> Options
--------------------------------------------------------------------------------                    

확장 프로그램 기본 정보

이름 Copy URL with Title (plain text/markdown) Copy URL with Title (plain text/markdown)
ID bpcogbhmkdjaohcmlghhkiohmldpnkoh
공식 URL https://chromewebstore.google.com/detail/copy-url-with-title-plain/bpcogbhmkdjaohcmlghhkiohmldpnkoh
설명 Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown.
파일 크기 16.72 KB
설치 횟수 1,343
현재 버전 1.1.1.1
최근 업데이트 2022-08-20
출시 날짜 2020-04-02
평점 3.07/5 총 14 개의 평점
개발자 https://takashyx.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://takashyx.com/portfolio/copy-url-with-title-2015/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy URL with Title (plain text\/markdown)",
    "short_name": "Copy URL with Title",
    "description": "Copy the title and URL in plain text\/markdown format by keyboard shortcuts: Ctrl+C\/Cmd+C for plain text, Alt+C\/Opt+C for markdown.",
    "version": "1.1.1.1",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_048.png",
        "32": "icon_032.png",
        "16": "icon_016.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "copyurlwithtitle.js",
                "toast.js",
                "options.js"
            ],
            "run_at": "document_start"
        }
    ]
}