Markdown Copy
This extension copies selected area as Markdown.
Wat is Markdown Copy?
Markdown Copy is een Chrome-extensie ontwikkeld door http://ayutaya.com, en de belangrijkste functie is "This extension copies selected area as Markdown.".
Extensie Screenshots
Download het CRX-bestand van de extensie Markdown Copy
Download Markdown Copy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension adds a button and a context menu item to copy selected region as a Markdown text. You can copy the text which includes links, items or headings from Chrome browser to Markdown document.
Source code is available here.: https://github.com/knaka/markdown-copy Basisinformatie over de Extensie
| Naam | |
| ID | pmhimaghllfokaimpamhcbdhmogcbegh |
| Officiële URL | https://chrome.google.com/webstore/detail/markdown-copy/pmhimaghllfokaimpamhcbdhmogcbegh |
| Beschrijving | This extension copies selected area as Markdown. |
| Bestandsgrootte | 15.22 KB |
| Aantal Installaties | 256 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2015-09-13 |
| Publicatiedatum | 2015-09-13 |
| Beoordeling | 3.33/5 Totaal 9 Beoordelingen |
| Ontwikkelaar | http://ayutaya.com |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/knaka/markdown-copy |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Markdown Copy",
"description": "This extension copies selected area as Markdown.",
"version": "1.0",
"icons": {
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon128.png"
},
"background": {
"page": "background.html"
},
"permissions": [
"tabs",
"contextMenus",
"activeTab",
"clipboardWrite"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
]
} | |