Thread Portal

Browse Twitter spatially with a graph view

O que é Thread Portal?

Thread Portal é uma extensão do Chrome desenvolvida por Dharam Kapila, e sua principal característica é "Browse Twitter spatially with a graph view".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Thread Portal

Baixe arquivos de extensão Thread 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

                        This extension allows you to browse Twitter threads visually with a mind map, or a graph view.

In order to do this, click on the circle icon on the top right corner of any tweet in your timeline.
Alternatively, right click on any tweet and click on the Thread Portal icon.

This extension is inspired by the incredible Treeverse extension for Chrome. 
---

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 Thread Portal Thread Portal
ID pfjbbiekapboaocgioobnnibekglihin
URL Oficial https://chrome.google.com/webstore/detail/thread-portal/pfjbbiekapboaocgioobnnibekglihin
Descrição Browse Twitter spatially with a graph view
Tamanho do Arquivo 234 KB
Contagem de Instalações 259
Versão Atual 1.0.0
Última Atualização 2021-04-03
Data de Publicação 2021-04-03
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Dharam Kapila
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://roamresearch.com/#/app/Public-Dharam/page/msnUNCK3L
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Thread Portal",
    "description": "Browse Twitter spatially with a graph view",
    "version": "1.0.0",
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "app.js",
        "app.css"
    ],
    "browser_action": {
        "default_title": "Open Thread Portal"
    },
    "permissions": [
        "contextMenus",
        "webRequest",
        "https:\/\/twitter.com\/",
        "https:\/\/api.twitter.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}