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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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 } |