Copy Link With Title

This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.

Cos'è Copy Link With Title?

Copy Link With Title è un'estensione di Chrome sviluppata da Paul Cohn, e la sua funzione principale è "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Copy Link With Title

Scarica i file di estensione Copy Link With Title 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

                        * Copy a link with the title for pasting into a notetaking app for clearer notes
* Copy as HTML and paste into code
* Copy as Markdown and paste into Reddit or Github
* Define your own format for whatever crazy schemes you have

Update 2021/08/25:
* Updated icon for better visibility in dark mode.

Update 2020/01/17:
* Newlines work!                    

Informazioni di Base sull'Estensione

Nome Copy Link With Title Copy Link With Title
ID cfbjnjeaoamknmdojhgcblkebcphmcei
URL Ufficiale https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei
Descrizione This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
Dimensione del File 58.18 KB
Conteggio Installazioni 1,412
Versione Corrente 1.0.2
Ultimo Aggiornamento 2021-08-25
Data di Pubblicazione 2020-01-16
Valutazione 3.54/5 Totale 13 Valutazioni
Sviluppatore Paul Cohn
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://twitter.com/paulsterr
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy Link With Title",
    "description": "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}