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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        ]
    }
}