Markdown Link
Copy Markdown link for current tab
What is Markdown Link?
Markdown Link is a Chrome extension developed by Weida - wdhongtw, and its main feature is "Copy Markdown link for current tab".
Extension Screenshots
Download Markdown Link Extension CRX File
Download Markdown Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Generate and copy Markdown link of current tab with one click. Just click extension icon, and the string like "[Page Title](https://example.com/some-page)" will be send to your clipboard. You can also use Alt + F (can be changed later) to active this extension. The functionality of link-transform has been added, see extension option page for more information.
Extension Basic Information
Name | Markdown Link |
ID | ecbklhnbeilcdabliikhpdanaljlpkhe |
Official URL | https://chromewebstore.google.com/detail/markdown-link/ecbklhnbeilcdabliikhpdanaljlpkhe |
Description | Copy Markdown link for current tab |
File Size | 9.02 KB |
Installation Count | 208 |
Current Version | 0.3.2 |
Last Updated | 2023-11-15 |
Publish Date | 2020-03-05 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Weida - wdhongtw |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/wdhongtw/markdown-link |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Markdown Link", "version": "0.3.2", "description": "Copy Markdown link for current tab", "icons": { "128": "images\/icon-128.png" }, "permissions": [ "activeTab", "scripting", "storage" ], "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "action": { "default_title": "Get Markdown URL" }, "commands": { "_execute_action": { "suggested_key": { "default": "Alt+F" }, "description": "Copy Markdown link for current tab" } }, "manifest_version": 3 } |