Mark Wrap
This extension wraps the selected text in a markdown link with the contents of the clipboard
Cos'è Mark Wrap?
Mark Wrap è un'estensione di Chrome sviluppata da bitoiu, e la sua funzione principale è "This extension wraps the selected text in a markdown link with the contents of the clipboard".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mark Wrap
Scarica i file di estensione Mark Wrap 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
This extension wraps the selected text in a markdown link with the contents of the clipboard. Informazioni di Base sull'Estensione
| Nome | |
| ID | momphlnnfcfahjjofidepemapjghebmd |
| URL Ufficiale | https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd |
| Descrizione | This extension wraps the selected text in a markdown link with the contents of the clipboard |
| Dimensione del File | 16.78 KB |
| Conteggio Installazioni | 40 |
| Versione Corrente | 0.1 |
| Ultimo Aggiornamento | 2015-09-24 |
| Data di Pubblicazione | 2015-09-23 |
| Valutazione | 3.67/5 Totale 3 Valutazioni |
| Sviluppatore | bitoiu |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/bitoiu/markwrap |
| URL della Pagina di Aiuto | https://github.com/bitoiu/markwrap/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mark Wrap",
"description": "This extension wraps the selected text in a markdown link with the contents of the clipboard",
"version": "0.1",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"activeTab",
"clipboardRead"
],
"commands": {
"toggle-feature-foo": {
"suggested_key": {
"default": "Ctrl+Shift+V",
"mac": "Command+Shift+V"
},
"description": "Toggle feature foo"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentscript.js"
]
}
],
"icons": {
"19": "assets\/icon19.png",
"38": "assets\/icon38.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
} | |