Side Portal
Browse Wikipedia spatially with a graph view and a contextual sidebar
Was ist Side Portal?
Side Portal ist eine Chrome-Erweiterung, die von Dharam Kapila entwickelt wurde, und ihr Hauptmerkmal ist "Browse Wikipedia spatially with a graph view and a contextual sidebar".
Erweiterungsscreenshots
Side Portal-Erweiterungs-CRX-Datei herunterladen
Laden Sie Side Portal-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 :)
Grundlegende Informationen zur Erweiterung
Name | Side Portal |
ID | edmhnddghecolncglginechhpkijpbed |
Offizielle URL | https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed |
Beschreibung | Browse Wikipedia spatially with a graph view and a contextual sidebar |
Dateigröße | 210 KB |
Installationsanzahl | 231 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2021-02-27 |
Veröffentlichungsdatum | 2021-01-26 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | Dharam Kapila |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ |
Unterstützte Sprachen | 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" ] } } |