Tab Link Copier
Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
O que é Tab Link Copier?
Tab Link Copier é uma extensão do Chrome desenvolvida por Volodya Shtenovych, e sua principal característica é "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab Link Copier
Baixe arquivos de extensão Tab Link Copier 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
Copies the current page url and title as a rich text link. Useful when you want to refer to a web-page in a document you are writing - with one click on an icon the link gets copied to clipboard so you can later on simply paste it in a google doc or text editor. To copy the link of the current tab click on the extension's icon or use the keyboard shortcut: Ctrl+Shift+C (Command+Ctrl+C for Mac). In case of using the shortcut this extension will ask for tabs permissions in order to query the current tab's url.
Informações Básicas da Extensão
Nome | Tab Link Copier |
ID | ijkpnaifgolhlcfhcfamddnlnfjpjaji |
URL Oficial | https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji |
Descrição | Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs |
Tamanho do Arquivo | 19.26 KB |
Contagem de Instalações | 668 |
Versão Atual | 1.2.3 |
Última Atualização | 2020-05-02 |
Data de Publicação | 2020-05-02 |
Classificação | 3.67/5 Total de 15 Avaliações |
Desenvolvedor | Volodya Shtenovych |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Leksyk/chrome-copy-link |
URL da Página de Ajuda | https://github.com/Leksyk/chrome-copy-link |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Link Copier", "description": "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs", "version": "1.2.3", "background": { "persistent": false, "scripts": [ "copyLink.js" ] }, "browser_action": { "default_icon": "icon.png" }, "icons": { "128": "icon.png" }, "commands": { "copy-link": { "suggested_key": { "default": "Ctrl+Shift+C", "mac": "Command+MacCtrl+C" }, "description": "Copy Link as Rich Text" }, "copy-as-plain": { "description": "Copy Link and Title as Plain Text" } }, "permissions": [ "clipboardWrite", "tabs", "contextMenus" ], "optional_permissions": [ "notifications" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |