Roam Research Markdown Links
Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title
Co to jest Roam Research Markdown Links?
Roam Research Markdown Links to rozszerzenie Chrome opracowane przez João Valente, a jego główną funkcją jest „Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Roam Research Markdown Links
Pobierz pliki rozszerzeń Roam Research Markdown Links w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Roam Research Markdown Links |
ID | idlhfmfbimbonggifafgaenpijapenjf |
Oficjalny URL | https://chromewebstore.google.com/detail/roam-research-markdown-li/idlhfmfbimbonggifafgaenpijapenjf |
Opis | Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title |
Rozmiar pliku | 10.93 KB |
Liczba instalacji | 265 |
Aktualna Wersja | 1.6.0 |
Ostatnia Aktualizacja | 2021-03-24 |
Data Publikacji | 2020-10-27 |
Ocena | 4.50/5 Łącznie 4 Oceny |
Deweloper | João Valente |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/jvalente/roamresearchmarkdownlinks |
Adres URL Strony Pomocy | https://github.com/jvalente/roamresearchmarkdownlinks |
Obsługiwane Języki | 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 } |