Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

Side Portal क्या है?

Side Portal Dharam Kapila द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browse Wikipedia spatially with a graph view and a contextual sidebar"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Side Portal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Side Portal Side Portal
ID edmhnddghecolncglginechhpkijpbed
आधिकारिक URL https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed
विवरण Browse Wikipedia spatially with a graph view and a contextual sidebar
फ़ाइल का आकार 210 KB
स्थापना संख्या 231
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2021-02-27
प्रकाशन तिथि 2021-01-26
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Dharam Kapila
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ
समर्थित भाषाएँ 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"
        ]
    }
}