Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

ما هو Side Portal؟

Side Portal هو إضافة Chrome تم تطويرها بواسطة Dharam Kapila، والميزة الرئيسية لها هي "Browse Wikipedia spatially with a graph view and a contextual sidebar".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Side Portal

قم بتنزيل ملفات الامتداد Side Portal بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        ]
    }
}