Mark Wrap
This extension wraps the selected text in a markdown link with the contents of the clipboard
Vad är Mark Wrap?
Mark Wrap är en Chrome-tillägg utvecklad av bitoiu, och dess huvudfunktion är "This extension wraps the selected text in a markdown link with the contents of the clipboard".
Tilläggsskärmbilder
Ladda ner Mark Wrap-förlängningens CRX-fil
Ladda ner Mark Wrap-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
This extension wraps the selected text in a markdown link with the contents of the clipboard.
Grundläggande Information om Tillägg
Namn | Mark Wrap |
ID | momphlnnfcfahjjofidepemapjghebmd |
Officiell webbadress | https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd |
Beskrivning | This extension wraps the selected text in a markdown link with the contents of the clipboard |
Filstorlek | 16.78 KB |
Antal Installationer | 40 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2015-09-24 |
Publiceringsdatum | 2015-09-23 |
Betyg | 3.67/5 Totalt 3 Betyg |
Utvecklare | bitoiu |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/bitoiu/markwrap |
Hjälpsida URL | https://github.com/bitoiu/markwrap/issues |
Stödda Språk | 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" } } |