Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

Side Portal란 무엇입니까?

Side Portal은(는) Dharam Kapila에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browse Wikipedia spatially with a graph view and a contextual sidebar"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Side Portal improves navigating in Wikipedia by adding a right sidebar, and providing a graph view of your articles.

To use Side Portal -
1. Navigate to any Wikipedia article.
2. Shift + Click on links within those articles. The articles will now appear in the right sidebar.
3. Click 'Explore Spatially' to see a graph view of all your open articles.

This extension is inspired by Roam Research.

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

확장 프로그램 기본 정보

이름 Side Portal Side Portal
ID edmhnddghecolncglginechhpkijpbed
공식 URL https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed
설명 Browse Wikipedia spatially with a graph view and a contextual sidebar
파일 크기 210 KB
설치 횟수 231
현재 버전 1.0.1
최근 업데이트 2021-02-27
출시 날짜 2021-01-26
평점 5.00/5 총 4 개의 평점
개발자 Dharam Kapila
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Side Portal",
    "description": "Browse Wikipedia spatially with a graph view and a contextual sidebar",
    "version": "1.0.1",
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "app.js",
        "app.css"
    ],
    "browser_action": {
        "default_title": "Open Side Portal"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}