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 là gì?
Roam Research Markdown Links là một tiện ích mở rộng Chrome được phát triển bởi João Valente, và tính năng chính của nó là "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Roam Research Markdown Links
Tải xuống các tệp mở rộng Roam Research Markdown Links dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Roam Research Markdown Links |
ID | idlhfmfbimbonggifafgaenpijapenjf |
URL Chính Thức | https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf |
Mô tả | Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title |
Kích Thước Tệp | 10.93 KB |
Số Lần Cài Đặt | 265 |
Phiên Bản Hiện Tại | 1.6.0 |
Cập Nhật Lần Cuối | 2021-03-24 |
Ngày Phát Hành | 2020-10-27 |
Đánh Giá | 4.50/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | João Valente |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jvalente/roamresearchmarkdownlinks |
URL Trang Trợ Giúp | https://github.com/jvalente/roamresearchmarkdownlinks |
Ngôn Ngữ Được Hỗ Trợ | 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 } |