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”。
擴展截圖
下載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 |
ID | edmhnddghecolncglginechhpkijpbed |
官方網址 | 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" ] } } |