Roaman

Adds extra features to the note taking app called Roam Research

Roaman là gì?

Roaman là một tiện ích mở rộng Chrome được phát triển bởi eboodnero, và tính năng chính của nó là "Adds extra features to the note taking app called Roam Research".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Roaman

Tải xuống các tệp mở rộng Roaman dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Roaman Roaman
ID milpmfbdbfoljjbjnihcbcbafebdcbib
URL Chính Thức https://chromewebstore.google.com/detail/roaman/milpmfbdbfoljjbjnihcbcbafebdcbib
Mô tả Adds extra features to the note taking app called Roam Research
Kích Thước Tệp 4.31 MB
Số Lần Cài Đặt 567
Phiên Bản Hiện Tại 0.0.0.13
Cập Nhật Lần Cuối 2020-07-18
Ngày Phát Hành 2020-06-22
Đánh Giá 3.75/5 Tổng số 8 Đánh Giá
Nhà Phát Triển eboodnero
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}