Excerpt with Link

Copies selected text and associated link (URL).

Excerpt with Link là gì?

Excerpt with Link là một tiện ích mở rộng Chrome được phát triển bởi Scott Hicks, và tính năng chính của nó là "Copies selected text and associated link (URL).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Excerpt with Link

Tải xuống các tệp mở rộng Excerpt with Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Excerpt with Link Excerpt with Link
ID ecafbbbagbilgmcjpngaagjglmmkdpla
URL Chính Thức https://chromewebstore.google.com/detail/excerpt-with-link/ecafbbbagbilgmcjpngaagjglmmkdpla
Mô tả Copies selected text and associated link (URL).
Kích Thước Tệp 10.1 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2023-08-30
Ngày Phát Hành 2021-03-02
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Scott Hicks
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}