Twitch - Remove Top Cheer
This extension removes the top cheer from the top of chat on twitch.tv
¿Qué es Twitch - Remove Top Cheer?
Twitch - Remove Top Cheer es una extensión de Chrome desarrollada por josh.m.correia, y su función principal es "This extension removes the top cheer from the top of chat on twitch.tv".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch - Remove Top Cheer
Descarga archivos de extensión Twitch - Remove Top Cheer 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
This is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv
Información Básica de la Extensión
Nombre | |
ID | plhdimgjjobkjbdngkdfenkcdfipjhfc |
URL Oficial | https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc |
Descripción | This extension removes the top cheer from the top of chat on twitch.tv |
Tamaño del Archivo | 39.8 KB |
Cantidad de Instalaciones | 88 |
Versión Actual | 1.03 |
Última Actualización | 2019-02-17 |
Fecha de Publicación | 2019-02-17 |
Calificación | 4.00/5 Total de 4 Calificaciones |
Desarrollador | josh.m.correia |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch - Remove Top Cheer", "description": "This extension removes the top cheer from the top of chat on twitch.tv", "version": "1.03", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage", "tabs" ], "background": { "scripts": [ "jquery-3.2.1.min.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "jquery-3.2.1.min.js", "remove_top_cheer.js" ], "run_at": "document_end" } ] } |