Roam Research Markdown Links

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

Qu'est-ce que Roam Research Markdown Links ?

Roam Research Markdown Links est une extension Chrome développée par João Valente, et sa fonction principale est "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Roam Research Markdown Links

Téléchargez les fichiers d'extension Roam Research Markdown Links au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Roam Research Markdown Links Roam Research Markdown Links
ID idlhfmfbimbonggifafgaenpijapenjf
URL Officiel https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf
Description Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
Taille du Fichier 10.93 KB
Nombre d'Installations 265
Version Actuelle 1.6.0
Dernière Mise à Jour 2021-03-24
Date de Publication 2020-10-27
Évaluation 4.50/5 Total 4 Évaluations
Développeur João Valente
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jvalente/roamresearchmarkdownlinks
URL de la Page d'Aide https://github.com/jvalente/roamresearchmarkdownlinks
Langues Prises en Charge 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
}