Sharemaster: Copy Title & URL with Shortcut
Helps you copy the title and url quickly with keyboard shortcuts
Cos'è Sharemaster: Copy Title & URL with Shortcut?
Sharemaster: Copy Title & URL with Shortcut è un'estensione di Chrome sviluppata da walterteng.com, e la sua funzione principale è "Helps you copy the title and url quickly with keyboard shortcuts".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Sharemaster: Copy Title & URL with Shortcut
Scarica i file di estensione Sharemaster: Copy Title & URL with Shortcut 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
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!
Informazioni di Base sull'Estensione
Nome | Sharemaster: Copy Title & URL with Shortcut |
ID | cglaemmecoiemahimhggkppegekpfdca |
URL Ufficiale | https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca |
Descrizione | Helps you copy the title and url quickly with keyboard shortcuts |
Dimensione del File | 9.82 KB |
Conteggio Installazioni | 158 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2023-05-04 |
Data di Pubblicazione | 2021-06-10 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | walterteng.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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)" } } } |