Side Portal
Browse Wikipedia spatially with a graph view and a contextual sidebar
O que é Side Portal?
Side Portal é uma extensão do Chrome desenvolvida por Dharam Kapila, e sua principal característica é "Browse Wikipedia spatially with a graph view and a contextual sidebar".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Side Portal
Baixe arquivos de extensão Side Portal no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 :)
Informações Básicas da Extensão
Nome | Side Portal |
ID | edmhnddghecolncglginechhpkijpbed |
URL Oficial | https://chromewebstore.google.com/detail/side-portal/edmhnddghecolncglginechhpkijpbed |
Descrição | Browse Wikipedia spatially with a graph view and a contextual sidebar |
Tamanho do Arquivo | 210 KB |
Contagem de Instalações | 231 |
Versão Atual | 1.0.1 |
Última Atualização | 2021-02-27 |
Data de Publicação | 2021-01-26 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | Dharam Kapila |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://roamresearch.com/#/app/Roam-Portal/page/ipjcLcKkJ |
Idiomas Suportados | 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" ] } } |