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?" هو إضافة Chrome تم تطويرها بواسطة Nicholas Currault، والميزة الرئيسية لها هي "Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Random "xkcd: what if?"
قم بتنزيل ملفات الامتداد Random "xkcd: what if?" بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" } } |