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?" là gì?

Random "xkcd: what if?" là một tiện ích mở rộng Chrome được phát triển bởi Nicholas Currault, và tính năng chính của nó là "Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Random "xkcd: what if?"

Tải xuống các tệp mở rộng Random "xkcd: what if?" dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Random Random "xkcd: what if?"
ID beobagcklikbfmdkohjnapachgcpbgid
URL Chính Thức https://chrome.google.com/webstore/detail/random-xkcd-what-if/beobagcklikbfmdkohjnapachgcpbgid
Mô tả Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.
Kích Thước Tệp 27.84 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2016-08-02
Ngày Phát Hành 2016-08-02
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Nicholas Currault
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}