Roam Research Markdown Links
Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
Roam Research Markdown Linksとは何ですか?
Roam Research Markdown LinksはJoão Valenteによって開発されたChromeの拡張機能で、その主な機能は「Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title」です。
拡張機能のスクリーンショット
Roam Research Markdown Links拡張機能のCRXファイルをダウンロード
Roam Research Markdown Links拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Roam Research Markdown Links |
ID | idlhfmfbimbonggifafgaenpijapenjf |
公式URL | https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf |
説明 | Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title |
ファイルサイズ | 10.93 KB |
インストール数 | 265 |
現在のバージョン | 1.6.0 |
最終更新日 | 2021-03-24 |
公開日 | 2020-10-27 |
評価 | 4.50/5 合計 4 レビュー |
開発者 | João Valente |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/jvalente/roamresearchmarkdownlinks |
ヘルプページのURL | https://github.com/jvalente/roamresearchmarkdownlinks |
対応言語 | 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 } |