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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Random "xkcd: what if?"

ดาวน์โหลดไฟล์ส่วนขยาย Random "xkcd: what if?" ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Random Random "xkcd: what if?"
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"
    }
}