Treeverse

A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…

Treeverse란 무엇입니까?

Treeverse은(는) http://treeverse.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…"입니다.

확장 프로그램 스크린샷

screenshot

Treeverse 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A browser extension for navigating burgeoning Twitter conversations.

Conversations are visualized as a tree. Each node (square) is an individual tweet, and an edge (line) between two tweets indicates that the lower one is a reply to the upper one. The color of the line indicates the time duration between the two tweets (red is faster, blue is slower.)

As you hover over nodes, the reply-chain preceeding that tweet appears on the right-side pane. By clicking a node, you can freeze the UI on that tweet in order to interact with the right-side pane. By clicking anywhere in the tree window, you can un-freeze the tweet and return to the normal hover behavior.                    

확장 프로그램 기본 정보

이름 Treeverse Treeverse
ID aahmjdadniahaicebomlagekkcnlcila
공식 URL https://chrome.google.com/webstore/detail/treeverse/aahmjdadniahaicebomlagekkcnlcila
설명 A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…
파일 크기 386 KB
설치 횟수 4,633
현재 버전 4.1
최근 업데이트 2022-06-23
출시 날짜 2020-05-27
평점 4.77/5 총 22 개의 평점
개발자 http://treeverse.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://treeverse.app/
개인정보 보호 정책 페이지 URL https://github.com/paulgb/Treeverse/blob/master/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Treeverse",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Treeverse"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "resources\/script\/viewer.js"
            ]
        }
    ],
    "description": "",
    "version": "4.1",
    "background": {
        "scripts": [
            "resources\/script\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "https:\/\/api.twitter.com\/",
        "https:\/\/mobile.twitter.com\/",
        "https:\/\/treeverse.app\/"
    ],
    "web_accessible_resources": [
        "resources\/*"
    ]
}