Tab Link Copier

Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs

Tab Link Copier란 무엇입니까?

Tab Link Copier은(는) Volodya Shtenovych에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Copies the current page url and title as a rich text link. 

Useful when you want to refer to a web-page in a document you are writing - with one click on an icon the link gets copied to clipboard so you can later on simply paste it in a google doc or text editor.

To copy the link of the current tab click on the extension's icon or use the keyboard shortcut: Ctrl+Shift+C (Command+Ctrl+C for Mac). In case of using the shortcut this extension will ask for tabs permissions in order to query the current tab's url.                    

확장 프로그램 기본 정보

이름 Tab Link Copier Tab Link Copier
ID ijkpnaifgolhlcfhcfamddnlnfjpjaji
공식 URL https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji
설명 Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
파일 크기 19.26 KB
설치 횟수 668
현재 버전 1.2.3
최근 업데이트 2020-05-02
출시 날짜 2020-05-02
평점 3.67/5 총 15 개의 평점
개발자 Volodya Shtenovych
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Leksyk/chrome-copy-link
도움말 페이지 URL https://github.com/Leksyk/chrome-copy-link
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Link Copier",
    "description": "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs",
    "version": "1.2.3",
    "background": {
        "persistent": false,
        "scripts": [
            "copyLink.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "commands": {
        "copy-link": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "mac": "Command+MacCtrl+C"
            },
            "description": "Copy Link as Rich Text"
        },
        "copy-as-plain": {
            "description": "Copy Link and Title as Plain Text"
        }
    },
    "permissions": [
        "clipboardWrite",
        "tabs",
        "contextMenus"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}