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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
}