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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
        ]
    }
}