Roam Research Markdown Links
Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
What is Roam Research Markdown Links?
Roam Research Markdown Links is a Chrome extension developed by João Valente, and its main feature is "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title".
Extension Screenshots
Download Roam Research Markdown Links Extension CRX File
Download Roam Research Markdown Links 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
When pasting a link on Roam Research, this extension will look for the browser tab that correspond to the pasted link, extract the tab title and use it to create a markdown link.
Extension Basic Information
Name | Roam Research Markdown Links |
ID | idlhfmfbimbonggifafgaenpijapenjf |
Official URL | https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf |
Description | Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title |
File Size | 10.93 KB |
Installation Count | 265 |
Current Version | 1.6.0 |
Last Updated | 2021-03-24 |
Publish Date | 2020-10-27 |
Rating | 4.50/5 Total 4 Ratings |
Developer | João Valente |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/jvalente/roamresearchmarkdownlinks |
Help Page URL | https://github.com/jvalente/roamresearchmarkdownlinks |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Roam Research Markdown Links", "version": "1.6.0", "description": "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/roamresearch.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |