Link-Md

Create a markdown link of the current page with quoted text.

O que é Link-Md?

Link-Md é uma extensão do Chrome desenvolvida por Jade Ohlhauser, e sua principal característica é "Create a markdown link of the current page with quoted text.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Link-Md

Baixe arquivos de extensão Link-Md 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

                        Click the plugin icon or use the hotkey to put a link in markdown format of the active tab into your clipboard. If you have text selected it will include it as a quote. I made it for referencing websites in my favorite note app, Logseq.                    

Informações Básicas da Extensão

Nome Link-Md Link-Md
ID nfjkoojhgklbbnlonpdplbdjkgoemgod
URL Oficial https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod
Descrição Create a markdown link of the current page with quoted text.
Tamanho do Arquivo 11.76 KB
Contagem de Instalações 302
Versão Atual 1.3
Última Atualização 2022-11-17
Data de Publicação 2021-12-07
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor Jade Ohlhauser
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jadeohl/linkmd
URL da Página de Ajuda https://github.com/jadeohl/linkmd
URL da Página de Política de Privacidade https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Link-Md",
    "description": "Create a markdown link of the current page with quoted text.",
    "version": "1.3",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "64": "icon-64.png",
            "128": "icon-128.png"
        }
    },
    "icons": {
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "clipboardWrite"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "Copy quote link to clipboard."
        }
    }
}