Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

Side Portal là gì?

Side Portal là một tiện ích mở rộng Chrome được phát triển bởi Dharam Kapila, và tính năng chính của nó là "Browse Wikipedia spatially with a graph view and a contextual sidebar".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Side Portal

Tải xuống các tệp mở rộng Side Portal dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Side Portal Side Portal
ID edmhnddghecolncglginechhpkijpbed
URL Chính Thức https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed
Mô tả Browse Wikipedia spatially with a graph view and a contextual sidebar
Kích Thước Tệp 210 KB
Số Lần Cài Đặt 231
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-02-27
Ngày Phát Hành 2021-01-26
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Dharam Kapila
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}