Roam Research Markdown Links

Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title

Apa itu Roam Research Markdown Links?

Roam Research Markdown Links adalah ekstensi Chrome yang dikembangkan oleh João Valente, dan fitur utamanya adalah "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Roam Research Markdown Links

Unduh file ekstensi Roam Research Markdown Links dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Roam Research Markdown Links Roam Research Markdown Links
ID idlhfmfbimbonggifafgaenpijapenjf
URL Resmi https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf
Deskripsi Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
Ukuran File 10.93 KB
Jumlah Instalasi 265
Versi Saat Ini 1.6.0
Terakhir Diperbarui 2021-03-24
Tanggal Publikasi 2020-10-27
Penilaian 4.50/5 Total 4 Penilaian
Pengembang João Valente
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/jvalente/roamresearchmarkdownlinks
URL Halaman Bantuan https://github.com/jvalente/roamresearchmarkdownlinks
Bahasa yang Didukung 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
}