Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

Vad är Side Portal?

Side Portal är en Chrome-tillägg utvecklad av Dharam Kapila, och dess huvudfunktion är "Browse Wikipedia spatially with a graph view and a contextual sidebar".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Side Portal-förlängningens CRX-fil

Ladda ner Side Portal-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Side Portal Side Portal
ID edmhnddghecolncglginechhpkijpbed
Officiell webbadress https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed
Beskrivning Browse Wikipedia spatially with a graph view and a contextual sidebar
Filstorlek 210 KB
Antal Installationer 231
Aktuell Version 1.0.1
Senast Uppdaterad 2021-02-27
Publiceringsdatum 2021-01-26
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Dharam Kapila
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ
Stödda Språk 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"
        ]
    }
}