Treeverse

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

Treeverse là gì?

Treeverse là một tiện ích mở rộng Chrome được phát triển bởi http://treeverse.app, và tính năng chính của nó là "A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Treeverse

Tải xuống các tệp mở rộng Treeverse dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Treeverse Treeverse
ID aahmjdadniahaicebomlagekkcnlcila
URL Chính Thức https://chrome.google.com/webstore/detail/treeverse/aahmjdadniahaicebomlagekkcnlcila
Mô tả A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…
Kích Thước Tệp 386 KB
Số Lần Cài Đặt 4,633
Phiên Bản Hiện Tại 4.1
Cập Nhật Lần Cuối 2022-06-23
Ngày Phát Hành 2020-05-27
Đánh Giá 4.77/5 Tổng số 22 Đánh Giá
Nhà Phát Triển http://treeverse.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://treeverse.app/
URL Trang Chính Sách Bảo Mật https://github.com/paulgb/Treeverse/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}