Thread Portal

Browse Twitter spatially with a graph view

Thread Portalとは何ですか?

Thread PortalはDharam Kapilaによって開発されたChromeの拡張機能で、その主な機能は「Browse Twitter spatially with a graph view」です。

拡張機能のスクリーンショット

screenshot
screenshot

Thread Portal拡張機能のCRXファイルをダウンロード

Thread Portal拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 :)                    

拡張機能の基本情報

名前 Thread Portal Thread Portal
ID pfjbbiekapboaocgioobnnibekglihin
公式URL https://chrome.google.com/webstore/detail/thread-portal/pfjbbiekapboaocgioobnnibekglihin
説明 Browse Twitter spatially with a graph view
ファイルサイズ 234 KB
インストール数 259
現在のバージョン 1.0.0
最終更新日 2021-04-03
公開日 2021-04-03
評価 5.00/5 合計 3 レビュー
開発者 Dharam Kapila
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://roamresearch.com/#/app/Public-Dharam/page/msnUNCK3L
対応言語 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"
        ]
    }
}