Roam Research Markdown Links

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

Was ist Roam Research Markdown Links?

Roam Research Markdown Links ist eine Chrome-Erweiterung, die von João Valente entwickelt wurde, und ihr Hauptmerkmal ist "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title".

Erweiterungsscreenshots

screenshot

Roam Research Markdown Links-Erweiterungs-CRX-Datei herunterladen

Laden Sie Roam Research Markdown Links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Roam Research Markdown Links Roam Research Markdown Links
ID idlhfmfbimbonggifafgaenpijapenjf
Offizielle URL https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf
Beschreibung Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
Dateigröße 10.93 KB
Installationsanzahl 265
Aktuelle Version 1.6.0
Letztes Update 2021-03-24
Veröffentlichungsdatum 2020-10-27
Bewertung 4.50/5 Insgesamt 4 Bewertungen
Entwickler João Valente
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/jvalente/roamresearchmarkdownlinks
Hilfeseite URL https://github.com/jvalente/roamresearchmarkdownlinks
Unterstützte Sprachen 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
}