Excerpt with Link

Copies selected text and associated link (URL).

Cos'è Excerpt with Link?

Excerpt with Link è un'estensione di Chrome sviluppata da Scott Hicks, e la sua funzione principale è "Copies selected text and associated link (URL).".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Excerpt with Link

Scarica i file di estensione Excerpt with Link in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Excerpt with Link Excerpt with Link
ID ecafbbbagbilgmcjpngaagjglmmkdpla
URL Ufficiale https://chromewebstore.google.com/detail/excerpt-with-link/ecafbbbagbilgmcjpngaagjglmmkdpla
Descrizione Copies selected text and associated link (URL).
Dimensione del File 10.1 KB
Conteggio Installazioni 45
Versione Corrente 1.3
Ultimo Aggiornamento 2023-08-30
Data di Pubblicazione 2021-03-02
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Scott Hicks
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}