Roam Research Markdown Links

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

Hvad er Roam Research Markdown Links?

Roam Research Markdown Links er en Chrome-udvidelse udviklet af João Valente, og dens hovedfunktion er "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title".

Udvidelsesskærmbilleder

screenshot

Download Roam Research Markdown Links-udvidelses-CRX-fil

Download Roam Research Markdown Links-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Roam Research Markdown Links Roam Research Markdown Links
ID idlhfmfbimbonggifafgaenpijapenjf
Officiel URL https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf
Beskrivelse Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
Filstørrelse 10.93 KB
Antal Installationer 265
Nuværende Version 1.6.0
Senest Opdateret 2021-03-24
Udgivelsesdato 2020-10-27
Bedømmelse 4.50/5 Samlet 4 Bedømmelser
Udvikler João Valente
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/jvalente/roamresearchmarkdownlinks
Hjælpeside-URL https://github.com/jvalente/roamresearchmarkdownlinks
Understøttede Sprog 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
}