Random "xkcd: what if?"
Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.
Random "xkcd: what if?" क्या है?
Random "xkcd: what if?" Nicholas Currault द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Random "xkcd: what if?" एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | beobagcklikbfmdkohjnapachgcpbgid |
आधिकारिक URL | https://chrome.google.com/webstore/detail/random-xkcd-what-if/beobagcklikbfmdkohjnapachgcpbgid |
विवरण | Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd. |
फ़ाइल का आकार | 27.84 KB |
स्थापना संख्या | 24 |
वर्तमान संस्करण | 2.0.1 |
अंतिम अपडेट | 2016-08-02 |
प्रकाशन तिथि | 2016-08-02 |
रेटिंग | 4.25/5 कुल 4 रेटिंग्स |
डेवलपर | Nicholas Currault |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |