Treeverse
A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…
¿Qué es Treeverse?
Treeverse es una extensión de Chrome desarrollada por http://treeverse.app, y su función principal es "A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Treeverse
Descarga archivos de extensión Treeverse en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | aahmjdadniahaicebomlagekkcnlcila |
URL Oficial | https://chrome.google.com/webstore/detail/treeverse/aahmjdadniahaicebomlagekkcnlcila |
Descripción | A browser extension for navigating burgeoning Twitter conversations. Conversations are visualized as a tree. Each node (square) is… |
Tamaño del Archivo | 386 KB |
Cantidad de Instalaciones | 4,633 |
Versión Actual | 4.1 |
Última Actualización | 2022-06-23 |
Fecha de Publicación | 2020-05-27 |
Calificación | 4.77/5 Total de 22 Calificaciones |
Desarrollador | http://treeverse.app |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://treeverse.app/ |
URL de la Página de Política de Privacidad | https://github.com/paulgb/Treeverse/blob/master/PRIVACY.md |
Idiomas Soportados | 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\/*" ] } |