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文件

下载Treeverse扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
    ]
}