Excerpt with Link

Copies selected text and associated link (URL).

Excerpt with Link란 무엇입니까?

Excerpt with Link은(는) Scott Hicks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copies selected text and associated link (URL)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The "Excerpt with Link" extension copies selected text and the associated webpage link (URL) to the clipboard. This provides a quick and simple way to cite website text.

Select desired text, then open the context menu and select "Excerpt with Link" from the menu. You can normally open the context menu by right-clicking.

Please let me know of any issues you experience before writing a review -- I'm happy to continue to improve the solution. The extension is provided 'As-Is' without any express or implied warranty of any kind.

Note that I do not collect any information from the extension -- all handling is done at your local browser. 

I hope you find this extension to be helpful. 

Cheers,
/Scott

(The extension icon has been designed using resources from Flaticon.com)

---
Updates:
v1.3: Improved text copy (selected text wasn't always copied for some websites).

v1.2: Improved memory utilization (background script is non-persistent).                    

확장 프로그램 기본 정보

이름 Excerpt with Link Excerpt with Link
ID ecafbbbagbilgmcjpngaagjglmmkdpla
공식 URL https://chromewebstore.google.com/detail/excerpt-with-link/ecafbbbagbilgmcjpngaagjglmmkdpla
설명 Copies selected text and associated link (URL).
파일 크기 10.1 KB
설치 횟수 45
현재 버전 1.3
최근 업데이트 2023-08-30
출시 날짜 2021-03-02
평점 5.00/5 총 1 개의 평점
개발자 Scott Hicks
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Excerpt with Link",
    "version": "1.3",
    "manifest_version": 2,
    "short_name": "Excerpt with Link",
    "description": "Copies selected text and associated link (URL).",
    "author": "Wolf Mountain IP, LLC",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "contextMenus",
        "clipboardWrite",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png"
    }
}