Random "xkcd: what if?"
Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.
Qu'est-ce que Random "xkcd: what if?" ?
Random "xkcd: what if?" est une extension Chrome développée par Nicholas Currault, et sa fonction principale est "Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Random "xkcd: what if?"
Téléchargez les fichiers d'extension Random "xkcd: what if?" au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | beobagcklikbfmdkohjnapachgcpbgid |
URL Officiel | https://chrome.google.com/webstore/detail/random-xkcd-what-if/beobagcklikbfmdkohjnapachgcpbgid |
Description | Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd. |
Taille du Fichier | 27.84 KB |
Nombre d'Installations | 24 |
Version Actuelle | 2.0.1 |
Dernière Mise à Jour | 2016-08-02 |
Date de Publication | 2016-08-02 |
Évaluation | 4.25/5 Total 4 Évaluations |
Développeur | Nicholas Currault |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |