Roam Portal

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

Roam Portal란 무엇입니까?

Roam Portal은(는) Dharam Kapila에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A data visualization and analytics powered search engine in Roam. Built for exploration and discovery."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Roam Portal 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 :)                    

확장 프로그램 기본 정보

이름 Roam Portal Roam Portal
ID kgkmjbhbdakcdfkkgmmihcceekcdmefe
공식 URL https://chromewebstore.google.com/detail/roam-portal/kgkmjbhbdakcdfkkgmmihcceekcdmefe
설명 A data visualization and analytics powered search engine in Roam. Built for exploration and discovery.
파일 크기 2.82 MB
설치 횟수 1,880
현재 버전 7.0.1
최근 업데이트 2022-10-31
출시 날짜 2020-10-08
평점 4.94/5 총 16 개의 평점
개발자 Dharam Kapila
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://roamresearch.com/#/app/Roam-Portal/page/IiUhhFdN3
지원되는 언어 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"
        ]
    }
}