Blind Twitter
Keeps tweet authors hidden until you like or retweet them.
¿Qué es Blind Twitter?
Blind Twitter es una extensión de Chrome desarrollada por Avneesh Kohli, y su función principal es "Keeps tweet authors hidden until you like or retweet them.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Blind Twitter
Descarga archivos de extensión Blind Twitter 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
Twitter is an incredible platform, but it is also one where the diffusion of ideas is biased towards those with influence. Blind Twitter aims to solve this problem. By keeping tweet authors and Like/Retweet counts hidden, you get to decide free of outside signal the quality of a tweet. Once you engage with a tweet by liking, retweeting, replying to it, we'll reveal who wrote it and where it's from. We think this will genuinely change how you interact with your Twitter feed.
Información Básica de la Extensión
Nombre | |
ID | ahnfpebnkocjfnljkeibilgochlohpge |
URL Oficial | https://chrome.google.com/webstore/detail/ahnfpebnkocjfnljkeibilgochlohpge |
Descripción | Keeps tweet authors hidden until you like or retweet them. |
Tamaño del Archivo | 50.97 KB |
Cantidad de Instalaciones | 46 |
Versión Actual | 1.2.3 |
Última Actualización | 2016-02-08 |
Fecha de Publicación | 2016-02-08 |
Calificación | 3.20/5 Total de 5 Calificaciones |
Desarrollador | Avneesh Kohli |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Blind Twitter", "description": "Keeps tweet authors hidden until you like or retweet them.", "version": "1.2.3", "browser_action": { "default_icon": "logo.png", "default_title": "Reveal Tweets" }, "background": { "scripts": [ "background.js" ] }, "icons": { "48": "logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "jquery-2.1.4.min.js", "script.js" ] } ], "web_accessible_resources": [ "images\/avatar.png", "images\/logo.png" ], "permissions": [ "activeTab", "tabs", "storage", "webRequest", "*:\/\/*.twitter.com\/*", "*:\/\/*.google-analytics.com\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |