Markdown Link

Copy Markdown link for current tab

Cos'è Markdown Link?

Markdown Link è un'estensione di Chrome sviluppata da Weida - wdhongtw, e la sua funzione principale è "Copy Markdown link for current tab".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Markdown Link

Scarica i file di estensione Markdown 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

                        Generate and copy Markdown link of current tab with one click.

Just click extension icon, and the string like "[Page Title](https://example.com/some-page)" will be send to your clipboard.

You can also use Alt + F (can be changed later) to active this extension.

The functionality of link-transform has been added, see extension option page for more information.                    

Informazioni di Base sull'Estensione

Nome Markdown Link Markdown Link
ID ecbklhnbeilcdabliikhpdanaljlpkhe
URL Ufficiale https://chromewebstore.google.com/detail/markdown-link/ecbklhnbeilcdabliikhpdanaljlpkhe
Descrizione Copy Markdown link for current tab
Dimensione del File 9.02 KB
Conteggio Installazioni 208
Versione Corrente 0.3.2
Ultimo Aggiornamento 2023-11-15
Data di Pubblicazione 2020-03-05
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Weida - wdhongtw
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/wdhongtw/markdown-link
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markdown Link",
    "version": "0.3.2",
    "description": "Copy Markdown link for current tab",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_title": "Get Markdown URL"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+F"
            },
            "description": "Copy Markdown link for current tab"
        }
    },
    "manifest_version": 3
}