GIVE US ALL YOUR MONEY
Replaces brand tweets with "GIVE US ALL YOUR MONEY"
¿Qué es GIVE US ALL YOUR MONEY?
GIVE US ALL YOUR MONEY es una extensión de Chrome desarrollada por Declan Hoare, y su función principal es "Replaces brand tweets with "GIVE US ALL YOUR MONEY"".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GIVE US ALL YOUR MONEY
Descarga archivos de extensión GIVE US ALL YOUR MONEY 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
Inspired by viral Content from Wizz Wizz, this browser extension will detect tweets from known brand accounts on Twitter, and replace the text with "GIVE US ALL YOUR MONEY". * Compatible with both Twitter designs (legacy and mobile) * Can be toggled on-the-fly by clicking the extension icon * Public Domain
Información Básica de la Extensión
Nombre | GIVE US ALL YOUR MONEY |
ID | hojnhfncblgdolbnipododafipdkklej |
URL Oficial | https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej |
Descripción | Replaces brand tweets with "GIVE US ALL YOUR MONEY" |
Tamaño del Archivo | 41.76 KB |
Cantidad de Instalaciones | 11 |
Versión Actual | 2 |
Última Actualización | 2019-04-13 |
Fecha de Publicación | 2019-04-13 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | Declan Hoare |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/DeclanHoare/giveusallyourmoney |
URL de la Página de Ayuda | https://github.com/DeclanHoare/giveusallyourmoney/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GIVE US ALL YOUR MONEY", "author": "Declan Hoare", "description": "Replaces brand tweets with \"GIVE US ALL YOUR MONEY\"", "version": "2", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "page_action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "permissions": [ "https:\/\/*.twitter.com\/", "http:\/\/*.twitter.com\/", "storage" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.twitter.com\/*", "http:\/\/*.twitter.com\/*" ], "js": [ "scripts\/giveusallyourmoney.js" ] } ], "web_accessible_resources": [ "data\/brands.txt" ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false } } |