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”。

扩展截图

screenshot

下载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 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
电子邮箱 [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
}