Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

What is Side Portal?

Side Portal is a Chrome extension developed by Dharam Kapila, and its main feature is "Browse Wikipedia spatially with a graph view and a contextual sidebar".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Side Portal Extension CRX File

Download Side Portal extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Side Portal Side Portal
ID edmhnddghecolncglginechhpkijpbed
Official URL https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed
Description Browse Wikipedia spatially with a graph view and a contextual sidebar
File Size 210 KB
Installation Count 231
Current Version 1.0.1
Last Updated 2021-02-27
Publish Date 2021-01-26
Rating 5.00/5 Total 4 Ratings
Developer Dharam Kapila
Email [email protected]
Payment Type free
Extension Website https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ
Supported Languages 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"
        ]
    }
}