Roaman
Adds extra features to the note taking app called Roam Research
什麼是Roaman?
Roaman是由eboodnero開發的Chrome擴展程式,該擴展的主要功能是“Adds extra features to the note taking app called Roam Research”。
擴展截圖
下載Roaman擴展crx文件
下載Roaman擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This chrome extension adds some features to Roam Research. It allows users to 1. Collapse and expand blocks by holding Shift while scrolling over the block they want to collapse or expand. This works for pages in the right sidebar and page reference section too. 2. Delete a page by pressing Ctrl + Shift + Delete. 3. Auto complete by pressing Shift + Space, Tab, or Cmd+Enter. 4. Automatically add brackets after you press "#" so you can tag pages with multiple words. You can also highlight a word and have it be wrapped in #[[]] 5. Highlights the bullet to the left of text area and the line leading the sibling block above it in "DarkOrange". 6. Hovering on the left side of the screen will pull up the left sidebar so that you can have more screen real-estate. More features to come! You can message me on twitter @eboodnero to request a feature. If I can do it then I'll add it on my spare time! —Eran Boodnero
擴展基本資訊
名稱 | Roaman |
ID | milpmfbdbfoljjbjnihcbcbafebdcbib |
官方網址 | https://chromewebstore.google.com/detail/roaman/milpmfbdbfoljjbjnihcbcbafebdcbib |
簡介 | Adds extra features to the note taking app called Roam Research |
檔案大小 | 4.31 MB |
安裝次數 | 567 |
目前版本 | 0.0.0.13 |
更新時間 | 2020-07-18 |
上架時間 | 2020-06-22 |
評分 | 3.75/5 共 8 次評分 |
開發者 | eboodnero |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Roaman", "options_page": "options.html", "version": "0.0.0.13", "description": "Adds extra features to the note taking app called Roam Research", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "storage" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/roaman.png", "32": "images\/roaman.png", "48": "images\/roaman.png", "128": "images\/roaman.png" } }, "icons": { "16": "images\/roaman.png", "32": "images\/roaman.png", "48": "images\/roaman.png", "128": "images\/roaman.png" }, "content_scripts": [ { "matches": [ "https:\/\/roamresearch.com\/*" ], "js": [ "main.js", ".\/lib\/ScrollControl.js", ".\/lib\/ScopeHighlight.js", ".\/lib\/Autocomplete.js", ".\/lib\/CaretPosition.js", ".\/lib\/SidebarHover.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |