Sharemaster: Copy Title & URL with Shortcut
Helps you copy the title and url quickly with keyboard shortcuts
O que é Sharemaster: Copy Title & URL with Shortcut?
Sharemaster: Copy Title & URL with Shortcut é uma extensão do Chrome desenvolvida por walterteng.com, e sua principal característica é "Helps you copy the title and url quickly with keyboard shortcuts".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sharemaster: Copy Title & URL with Shortcut
Baixe arquivos de extensão Sharemaster: Copy Title & URL with Shortcut 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
Helps you copy the title and url quickly with easy shortcut keys! These are preconfigured shortcuts: ALT + C Copy Page Title and URL ALT + H Copy Page Title and URL in HTML syntax ALT + M Copy Page Title and URL in Markdown syntax These shortcuts are configurable via the chrome extensions shortcut menu too. Alternatively, Sharemaster can also be accessed from the menu by right-clicking on the webpage. This is ultra useful when you are working on your reports or simply sharing viral content with your friends!
Informações Básicas da Extensão
Nome | Sharemaster: Copy Title & URL with Shortcut |
ID | cglaemmecoiemahimhggkppegekpfdca |
URL Oficial | https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca |
Descrição | Helps you copy the title and url quickly with keyboard shortcuts |
Tamanho do Arquivo | 9.82 KB |
Contagem de Instalações | 158 |
Versão Atual | 1.0.1 |
Última Atualização | 2023-05-04 |
Data de Publicação | 2021-06-10 |
Classificação | 4.67/5 Total de 3 Avaliações |
Desenvolvedor | walterteng.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sharemaster: Copy Title & URL with Shortcut", "version": "1.0.1", "manifest_version": 2, "description": "Helps you copy the title and url quickly with keyboard shortcuts", "author": "Walter Teng", "homepage_url": "https:\/\/github.com\/davzoku", "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "clipboardWrite", "contextMenus", "tabs" ], "commands": { "copyTitleURLDefault": { "suggested_key": { "default": "Alt+C" }, "description": "Copy Title and URL (default)" }, "copyTitleURLMarkdown": { "suggested_key": { "default": "Alt+M" }, "description": "Copy Title and URL (Markdown)" }, "copyTitleURLHTML": { "suggested_key": { "default": "Alt+H" }, "description": "Copy Title and URL (HTML)" } } } |