Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

¿Qué es Side Portal?

Side Portal es una extensión de Chrome desarrollada por Dharam Kapila, y su función principal es "Browse Wikipedia spatially with a graph view and a contextual sidebar".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Side Portal

Descarga archivos de extensión Side Portal en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Side Portal Side Portal
ID edmhnddghecolncglginechhpkijpbed
URL Oficial https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed
Descripción Browse Wikipedia spatially with a graph view and a contextual sidebar
Tamaño del Archivo 210 KB
Cantidad de Instalaciones 231
Versión Actual 1.0.1
Última Actualización 2021-02-27
Fecha de Publicación 2021-01-26
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador Dharam Kapila
Correo electrónico dharam@hey.com
Tipo de Pago free
Sitio Web de la Extensión https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ
Idiomas Soportados 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"
        ]
    }
}