Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
O que é Copy Link With Title?
Copy Link With Title é uma extensão do Chrome desenvolvida por Paul Cohn, e sua principal característica é "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Copy Link With Title
Baixe arquivos de extensão Copy Link With Title 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
* 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!
Informações Básicas da Extensão
Nome | Copy Link With Title |
ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
URL Oficial | https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei |
Descrição | This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format. |
Tamanho do Arquivo | 58.18 KB |
Contagem de Instalações | 1,412 |
Versão Atual | 1.0.2 |
Última Atualização | 2021-08-25 |
Data de Publicação | 2020-01-16 |
Classificação | 3.54/5 Total de 13 Avaliações |
Desenvolvedor | Paul Cohn |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://twitter.com/paulsterr |
Idiomas Suportados | 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" ] } |