Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

Wat is Side Portal?

Side Portal is een Chrome-extensie ontwikkeld door Dharam Kapila, en de belangrijkste functie is "Browse Wikipedia spatially with a graph view and a contextual sidebar".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Side Portal

Download Side Portal-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Side Portal Side Portal
ID edmhnddghecolncglginechhpkijpbed
Officiële URL https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed
Beschrijving Browse Wikipedia spatially with a graph view and a contextual sidebar
Bestandsgrootte 210 KB
Aantal Installaties 231
Huidige Versie 1.0.1
Laatst Bijgewerkt 2021-02-27
Publicatiedatum 2021-01-26
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Dharam Kapila
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ
Ondersteunde Talen 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"
        ]
    }
}