markdown clipboard
copy content with md url format
Was ist markdown clipboard?
markdown clipboard ist eine Chrome-Erweiterung, die von leewei2020 entwickelt wurde, und ihr Hauptmerkmal ist "copy content with md url format".
markdown clipboard-Erweiterungs-CRX-Datei herunterladen
Laden Sie markdown clipboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Easy Copy Text & Img from Browser Page. Use - select the content you need: text or img - use the default short cut: Alt + C, - then you can paster the format markdown link to where you want Of course, after you select your content, u can click the extension icon for working too.
Grundlegende Informationen zur Erweiterung
Name | |
ID | kiieboeeejffbjnfejfjphoigfdiiadh |
Offizielle URL | https://chrome.google.com/webstore/detail/markdown-clipboard/kiieboeeejffbjnfejfjphoigfdiiadh |
Beschreibung | copy content with md url format |
Dateigröße | 7.04 KB |
Installationsanzahl | 21 |
Aktuelle Version | 1.2.0 |
Letztes Update | 2018-06-15 |
Veröffentlichungsdatum | 2018-06-15 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | leewei2020 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/onvno/markdown-clipboard |
URL der Datenschutzrichtlinien-Seite | https://www.privacypolicies.com/live/3ad506ee-698f-47bf-a25f-08e519875264 |
Unterstützte Sprachen | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "markdown clipboard", "short_name": "md", "description": "copy content with md url format", "version": "1.2.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "markdown clipboard", "default_icon": "markdown.png" }, "options_page": "options.html", "icons": { "128": "markdown.png", "16": "markdown.png", "48": "markdown.png" }, "commands": { "base": { "description": "ClipBoard Copy", "suggested_key": { "default": "Alt+C", "mac": "Alt+C" } } }, "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |