Roam Portal

A data visualization and analytics powered search engine in Roam. Built for exploration and discovery.

Roam Portal là gì?

Roam Portal là một tiện ích mở rộng Chrome được phát triển bởi Dharam Kapila, và tính năng chính của nó là "A data visualization and analytics powered search engine in Roam. Built for exploration and discovery.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Roam Portal 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

                        Roam Portal is an advance search engine - to help explore your data visually.

To start using this extension, click on the Roam Portal icon in your Chrome top right toolbar. You can use this extension on public and your private Roam databases.

With Roam Portal you can:
- Filter blocks modified by a particular user
- View your recently edited blocks
- Search within all of your block results and embeds
- Search for images in your graph
- Search for reactions from users
- Get a 3d/2d view of your Roam Graph
- Get a 3d globe view with shows cities, countries and other locations mentioned in your graph
- Search for and visualize tweets from your graph
- Tweet individual blocks 
- View search results sorted by date
- Filter search results by date
- Filter search results by page
- Visualize and compare usage of your page and block references over time
- Visualize usage of your pages and words over time
- Explore attributes
- Search by using regular expressions
- Visualize frequencies of similar pages and words 
- Create saved searches
- Search for only exact phrases
- Search for matches with similar spellings
- Filter out code blocks in your search
... and more to come.

I hope you will like it. If you have any problems, don't hesitate to contact me :)                    

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

Tên Roam Portal Roam Portal
ID kgkmjbhbdakcdfkkgmmihcceekcdmefe
URL Chính Thức https://chromewebstore.google.com/detail/roam-portal/kgkmjbhbdakcdfkkgmmihcceekcdmefe
Mô tả A data visualization and analytics powered search engine in Roam. Built for exploration and discovery.
Kích Thước Tệp 2.82 MB
Số Lần Cài Đặt 1,880
Phiên Bản Hiện Tại 7.0.1
Cập Nhật Lần Cuối 2022-10-31
Ngày Phát Hành 2020-10-08
Đánh Giá 4.94/5 Tổng số 16 Đánh Giá
Nhà Phát Triển Dharam Kapila
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://roamresearch.com/#/app/Roam-Portal/page/IiUhhFdN3
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Roam Portal",
    "description": "A data visualization and analytics powered search engine in Roam. Built for exploration and discovery.",
    "version": "7.0.1",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.roamresearch.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "app.js",
        "app.css",
        "datasets\/country_metadata.json",
        "datasets\/world_cities.json"
    ],
    "browser_action": {
        "default_title": "Open Roam Portal Search"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}