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ファイルをダウンロード

Side Portal拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        ]
    }
}