Roam Research Markdown Links

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

Wat is Roam Research Markdown Links?

Roam Research Markdown Links is een Chrome-extensie ontwikkeld door João Valente, en de belangrijkste functie is "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Roam Research Markdown Links

Download Roam Research Markdown Links-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Roam Research Markdown Links Roam Research Markdown Links
ID idlhfmfbimbonggifafgaenpijapenjf
Officiële URL https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf
Beschrijving Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
Bestandsgrootte 10.93 KB
Aantal Installaties 265
Huidige Versie 1.6.0
Laatst Bijgewerkt 2021-03-24
Publicatiedatum 2020-10-27
Beoordeling 4.50/5 Totaal 4 Beoordelingen
Ontwikkelaar João Valente
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/jvalente/roamresearchmarkdownlinks
Help Pagina-URL https://github.com/jvalente/roamresearchmarkdownlinks
Ondersteunde Talen 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
}