Mark Wrap
This extension wraps the selected text in a markdown link with the contents of the clipboard
Co to jest Mark Wrap?
Mark Wrap to rozszerzenie Chrome opracowane przez bitoiu, a jego główną funkcją jest „This extension wraps the selected text in a markdown link with the contents of the clipboard”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Mark Wrap
Pobierz pliki rozszerzeń Mark Wrap w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension wraps the selected text in a markdown link with the contents of the clipboard. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | momphlnnfcfahjjofidepemapjghebmd |
| Oficjalny URL | https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd |
| Opis | This extension wraps the selected text in a markdown link with the contents of the clipboard |
| Rozmiar pliku | 16.78 KB |
| Liczba instalacji | 40 |
| Aktualna Wersja | 0.1 |
| Ostatnia Aktualizacja | 2015-09-24 |
| Data Publikacji | 2015-09-23 |
| Ocena | 3.67/5 Łącznie 3 Oceny |
| Deweloper | bitoiu |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/bitoiu/markwrap |
| Adres URL Strony Pomocy | https://github.com/bitoiu/markwrap/issues |
| Obsługiwane Języki | 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"
}
} | |