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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย João Valente และคุณลักษณะหลักของมันคือ "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Roam Research Markdown Links

ดาวน์โหลดไฟล์ส่วนขยาย 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
}