Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

Qu'est-ce que Side Portal ?

Side Portal est une extension Chrome développée par Dharam Kapila, et sa fonction principale est "Browse Wikipedia spatially with a graph view and a contextual sidebar".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Side Portal

Téléchargez les fichiers d'extension Side Portal au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Side Portal Side Portal
ID edmhnddghecolncglginechhpkijpbed
URL Officiel https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed
Description Browse Wikipedia spatially with a graph view and a contextual sidebar
Taille du Fichier 210 KB
Nombre d'Installations 231
Version Actuelle 1.0.1
Dernière Mise à Jour 2021-02-27
Date de Publication 2021-01-26
Évaluation 5.00/5 Total 4 Évaluations
Développeur Dharam Kapila
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ
Langues Prises en Charge 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"
        ]
    }
}