Treeverse

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

Τι είναι το Treeverse;

Το Treeverse είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://treeverse.app, και η κύρια λειτουργία του είναι "A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Treeverse

Λήψη αρχείων επέκτασης 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\/*"
    ]
}