Sharemaster: Copy Title & URL with Shortcut
Helps you copy the title and url quickly with keyboard shortcuts
Vad är Sharemaster: Copy Title & URL with Shortcut?
Sharemaster: Copy Title & URL with Shortcut är en Chrome-tillägg utvecklad av walterteng.com, och dess huvudfunktion är "Helps you copy the title and url quickly with keyboard shortcuts".
Tilläggsskärmbilder
Ladda ner Sharemaster: Copy Title & URL with Shortcut-förlängningens CRX-fil
Ladda ner Sharemaster: Copy Title & URL with Shortcut-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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! Grundläggande Information om Tillägg
| Namn | |
| ID | cglaemmecoiemahimhggkppegekpfdca |
| Officiell webbadress | https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca |
| Beskrivning | Helps you copy the title and url quickly with keyboard shortcuts |
| Filstorlek | 9.82 KB |
| Antal Installationer | 158 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2023-05-04 |
| Publiceringsdatum | 2021-06-10 |
| Betyg | 4.67/5 Totalt 3 Betyg |
| Utvecklare | walterteng.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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)"
}
}
} | |