Roam Research Markdown Links
Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
Vad är Roam Research Markdown Links?
Roam Research Markdown Links är en Chrome-tillägg utvecklad av João Valente, och dess huvudfunktion är "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title".
Tilläggsskärmbilder
Ladda ner Roam Research Markdown Links-förlängningens CRX-fil
Ladda ner Roam Research Markdown Links-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Roam Research Markdown Links |
ID | idlhfmfbimbonggifafgaenpijapenjf |
Officiell webbadress | https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf |
Beskrivning | Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title |
Filstorlek | 10.93 KB |
Antal Installationer | 265 |
Aktuell Version | 1.6.0 |
Senast Uppdaterad | 2021-03-24 |
Publiceringsdatum | 2020-10-27 |
Betyg | 4.50/5 Totalt 4 Betyg |
Utvecklare | João Valente |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/jvalente/roamresearchmarkdownlinks |
Hjälpsida URL | https://github.com/jvalente/roamresearchmarkdownlinks |
Stödda Språk | 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 } |