Excerpt with Link
Copies selected text and associated link (URL).
O que é Excerpt with Link?
Excerpt with Link é uma extensão do Chrome desenvolvida por Scott Hicks, e sua principal característica é "Copies selected text and associated link (URL).".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Excerpt with Link
Baixe arquivos de extensão Excerpt with Link no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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).
Informações Básicas da Extensão
Nome | Excerpt with Link |
ID | ecafbbbagbilgmcjpngaagjglmmkdpla |
URL Oficial | https://chromewebstore.google.com/detail/excerpt-with-link/ecafbbbagbilgmcjpngaagjglmmkdpla |
Descrição | Copies selected text and associated link (URL). |
Tamanho do Arquivo | 10.1 KB |
Contagem de Instalações | 45 |
Versão Atual | 1.3 |
Última Atualização | 2023-08-30 |
Data de Publicação | 2021-03-02 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Scott Hicks |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |