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開發的Chrome擴展程式,該擴展的主要功能是“Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.”。

擴展截圖

screenshot
screenshot

下載Random "xkcd: what if?"擴展crx文件

下載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
官方網址 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"
    }
}