Random "xkcd: what if?"
Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.
¿Qué es Random "xkcd: what if?"?
Random "xkcd: what if?" es una extensión de Chrome desarrollada por Nicholas Currault, y su función principal es "Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Random "xkcd: what if?"
Descarga archivos de extensión Random "xkcd: what if?" 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
Update (v1.0.1): Fixes a bug which caused the references to become unclickable. Thanks to Reddit user /u/Notagtipsy for pointing this out. Update (v2.0.0): Improves efficiency: a random comic will only be requested if the button is clicked. This is similar to the xkcd random button. Also, I added an icon derived from the "What If?" logo! Update (v2.0.1): Fixed bug that made the random button always point to the current comic under some conditions.
Información Básica de la Extensión
Nombre | |
ID | beobagcklikbfmdkohjnapachgcpbgid |
URL Oficial | https://chrome.google.com/webstore/detail/random-xkcd-what-if/beobagcklikbfmdkohjnapachgcpbgid |
Descripción | Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd. |
Tamaño del Archivo | 27.84 KB |
Cantidad de Instalaciones | 24 |
Versión Actual | 2.0.1 |
Última Actualización | 2016-08-02 |
Fecha de Publicación | 2016-08-02 |
Calificación | 4.25/5 Total de 4 Calificaciones |
Desarrollador | Nicholas Currault |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Random \"xkcd: what if?\"", "description": "Implements the random button (which exists on the xkcd homepage) on the \"what if\" section of xkcd.", "version": "2.0.1", "content_scripts": [ { "exclude_globs": [], "include_globs": [ "*" ], "js": [ "main.user.js" ], "matches": [ "*:\/\/*.whatif.xkcd.com\/*", "*:\/\/*.what-if.xkcd.com\/*" ], "run_at": "document_end" } ], "converted_from_user_script": true, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |