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).”。
扩展截图
下载Excerpt with Link扩展crx文件
下载Excerpt with Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } } |