Roam Research Markdown Links
Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
Cos'è Roam Research Markdown Links?
Roam Research Markdown Links è un'estensione di Chrome sviluppata da João Valente, e la sua funzione principale è "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Roam Research Markdown Links
Scarica i file di estensione Roam Research Markdown Links in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Roam Research Markdown Links |
ID | idlhfmfbimbonggifafgaenpijapenjf |
URL Ufficiale | https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf |
Descrizione | Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title |
Dimensione del File | 10.93 KB |
Conteggio Installazioni | 265 |
Versione Corrente | 1.6.0 |
Ultimo Aggiornamento | 2021-03-24 |
Data di Pubblicazione | 2020-10-27 |
Valutazione | 4.50/5 Totale 4 Valutazioni |
Sviluppatore | João Valente |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jvalente/roamresearchmarkdownlinks |
URL della Pagina di Aiuto | https://github.com/jvalente/roamresearchmarkdownlinks |
Lingue Supportate | 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 } |