Sharemaster: Copy Title & URL with Shortcut
Helps you copy the title and url quickly with keyboard shortcuts
Qu'est-ce que Sharemaster: Copy Title & URL with Shortcut ?
Sharemaster: Copy Title & URL with Shortcut est une extension Chrome développée par walterteng.com, et sa fonction principale est "Helps you copy the title and url quickly with keyboard shortcuts".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sharemaster: Copy Title & URL with Shortcut
Téléchargez les fichiers d'extension Sharemaster: Copy Title & URL with Shortcut au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Sharemaster: Copy Title & URL with Shortcut |
ID | cglaemmecoiemahimhggkppegekpfdca |
URL Officiel | https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca |
Description | Helps you copy the title and url quickly with keyboard shortcuts |
Taille du Fichier | 9.82 KB |
Nombre d'Installations | 158 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2023-05-04 |
Date de Publication | 2021-06-10 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | walterteng.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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)" } } } |