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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 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"
    }
}