Treeverse

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

Qu'est-ce que Treeverse ?

Treeverse est une extension Chrome développée par http://treeverse.app, et sa fonction principale est "A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Treeverse

Téléchargez les fichiers d'extension Treeverse au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Treeverse Treeverse
ID aahmjdadniahaicebomlagekkcnlcila
URL Officiel https://chrome.google.com/webstore/detail/treeverse/aahmjdadniahaicebomlagekkcnlcila
Description A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…
Taille du Fichier 386 KB
Nombre d'Installations 4,633
Version Actuelle 4.1
Dernière Mise à Jour 2022-06-23
Date de Publication 2020-05-27
Évaluation 4.77/5 Total 22 Évaluations
Développeur http://treeverse.app
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://treeverse.app/
URL de la Page de Politique de Confidentialité https://github.com/paulgb/Treeverse/blob/master/PRIVACY.md
Langues Prises en Charge 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\/*"
    ]
}