Side Portal
Browse Wikipedia spatially with a graph view and a contextual sidebar
Co to jest Side Portal?
Side Portal to rozszerzenie Chrome opracowane przez Dharam Kapila, a jego główną funkcją jest „Browse Wikipedia spatially with a graph view and a contextual sidebar”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Side Portal
Pobierz pliki rozszerzeń Side Portal w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 :) Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | edmhnddghecolncglginechhpkijpbed |
| Oficjalny URL | https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed |
| Opis | Browse Wikipedia spatially with a graph view and a contextual sidebar |
| Rozmiar pliku | 210 KB |
| Liczba instalacji | 231 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2021-02-27 |
| Data Publikacji | 2021-01-26 |
| Ocena | 5.00/5 Łącznie 4 Oceny |
| Deweloper | Dharam Kapila |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ |
| Obsługiwane Języki | 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"
]
}
} | |