Hide X/Twitter Elements
This extension hides specified elements on the X/Twitter website.
¿Qué es Hide X/Twitter Elements?
Hide X/Twitter Elements es una extensión de Chrome desarrollada por https://tweet-reader.com, y su función principal es "This extension hides specified elements on the X/Twitter website.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Hide X/Twitter Elements
Descarga archivos de extensión Hide X/Twitter Elements 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
The following Element which you chose on the option screen will be hidden after those elements are loaded. (* After changing the settings, please reload the X/Twitter screen with the F5 key.) - Logo in top corner - Home timeline's Title area - Home timeline's Subtitle area - Sidebar Column - Images with Article Link - Who to follow in Timeline - Topics Carousel in Timeline - Follows(Following&Followers) Counts - Actions(Retweets, Quotes, Likes, Bookmarks, Views) Counts - Read From Older button (in Following) - Ads' Border - Focus Mode * When X/Twitter updates the layout of their website, this extension may temporarily stop working. * It'll take about 3 days to 2 weeks for this extension to catch up, after the author recognized it. * Note that X/Twitter updates do not occur in all countries at the same time and there is a lag of several days.
Información Básica de la Extensión
Nombre | Hide X/Twitter Elements |
ID | bkjfgbniifclpfjdpbjcebndlimfkkeg |
URL Oficial | https://chromewebstore.google.com/detail/hide-xtwitter-elements/bkjfgbniifclpfjdpbjcebndlimfkkeg |
Descripción | This extension hides specified elements on the X/Twitter website. |
Tamaño del Archivo | 50.52 KB |
Cantidad de Instalaciones | 1,000 |
Versión Actual | 2.10.15 |
Última Actualización | 2024-01-05 |
Fecha de Publicación | 2019-12-25 |
Calificación | 2.89/5 Total de 19 Calificaciones |
Desarrollador | https://tweet-reader.com |
Correo electrónico | [email protected] |
Tipo de Pago | in_app |
Sitio Web de la Extensión | https://hte.tweet-reader.com/search/label/Japanese |
URL de la Página de Ayuda | https://twitter.com/HotChaiLLC |
URL de la Página de Política de Privacidad | https://tweet-reader.com/privacy |
Idiomas Soportados | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "short_name": "HTE", "version": "2.10.15", "default_locale": "en", "description": "__MSG_appDesc__", "icons": { "48": "twit48.png", "128": "twit128.png" }, "action": { "default_icon": "twit48.png", "default_title": "Hide X\/Twitter Elements" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "all_frames": true, "js": [ "functions.js", "twitterstyle.js" ], "matches": [ "http:\/\/www.twitter.com\/*", "https:\/\/www.twitter.com\/*", "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*", "http:\/\/www.x.com\/*", "https:\/\/www.x.com\/*", "http:\/\/x.com\/*", "https:\/\/x.com\/*" ] } ], "options_page": "options.html", "permissions": [ "storage" ] } |