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 |
官方網址 | 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 |
電子郵箱 | [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 } |