Treeverse

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

Treeverse क्या है?

Treeverse http://treeverse.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Treeverse एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}