Rick Rollette
See how many links you can click before getting Rickrolled.
¿Qué es Rick Rollette?
Rick Rollette es una extensión de Chrome desarrollada por westbycs, y su función principal es "See how many links you can click before getting Rickrolled.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Rick Rollette
Descarga archivos de extensión Rick Rollette 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 extension turns all hyperlinks from google.com and wikipedia.org into a game of roulette. You can select your chance of getting Rickrolled (0%-100%) and then start clicking links. See who can click the most links before getting redirected to Rick Astley's iconic "Never Gonna Give You Up" music video.
Información Básica de la Extensión
Nombre | |
ID | bonjmjpebjhpdhpnfkkfohhgccjdddco |
URL Oficial | https://chrome.google.com/webstore/detail/rick-rollette/bonjmjpebjhpdhpnfkkfohhgccjdddco |
Descripción | See how many links you can click before getting Rickrolled. |
Tamaño del Archivo | 92.95 KB |
Cantidad de Instalaciones | 87 |
Versión Actual | 1.0 |
Última Actualización | 2020-03-23 |
Fecha de Publicación | 2020-03-23 |
Desarrollador | westbycs |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rick Rollette", "version": "1.0", "description": "See how many links you can click before getting Rickrolled.", "permissions": [ "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/rick16.png", "32": "images\/rick32.png", "48": "images\/rick48.png", "128": "images\/rick128.png" } }, "icons": { "16": "images\/rick16.png", "32": "images\/rick32.png", "48": "images\/rick48.png", "128": "images\/rick128.png" }, "manifest_version": 2, "content_scripts": [ { "js": [ "roller.js" ], "matches": [ "*:\/\/*.google.com\/*", "*:\/\/*.wikipedia.org\/*" ] } ] } |