Side Portal

Browse Wikipedia spatially with a graph view and a contextual sidebar

什么是Side Portal?

Side Portal是由Dharam Kapila开发的Chrome扩展程序,该扩展的主要功能是“Browse Wikipedia spatially with a graph view and a contextual sidebar”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Side Portal扩展crx文件

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