Sharemaster: Copy Title & URL with Shortcut
Helps you copy the title and url quickly with keyboard shortcuts
Co je Sharemaster: Copy Title & URL with Shortcut?
Sharemaster: Copy Title & URL with Shortcut je rozšíření Chrome vyvinuté walterteng.com, a jeho hlavní funkcí je „Helps you copy the title and url quickly with keyboard shortcuts“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Sharemaster: Copy Title & URL with Shortcut
Stáhněte si soubory rozšíření Sharemaster: Copy Title & URL with Shortcut ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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! Základní Informace o Rozšíření
| Název | |
| ID | cglaemmecoiemahimhggkppegekpfdca |
| Oficiální URL | https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca |
| Popis | Helps you copy the title and url quickly with keyboard shortcuts |
| Velikost souboru | 9.82 KB |
| Počet instalací | 158 |
| Aktuální Verze | 1.0.1 |
| Poslední Aktualizace | 2023-05-04 |
| Datum Vydání | 2021-06-10 |
| Hodnocení | 4.67/5 Celkem 3 Hodnocení |
| Vývojář | walterteng.com |
| [email protected] | |
| Typ Platby | free |
| Podporované Jazyky | 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)"
}
}
} | |