xkcd explainer

Displays an explanation of an opened xkcd comic from the explain xkcd wiki.

xkcd explainer란 무엇입니까?

xkcd explainer은(는) Avadonia314에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays an explanation of an opened xkcd comic from the explain xkcd wiki."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

xkcd explainer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Ever confused by an xkcd comic? Left wondering about some reference in the title text?

xkcd explainer provides detailed explanations to any xkcd comic, and displays it below the image for easy access. It automatically takes explanations from the explain xkcd wiki, and parses the wiki markup into HTML.

Currently, the following formats are available:
- Headings & Subheadings
- Bold & Italics
- Bullet and sub-bullet points
- Internal links (within the explain xkcd wiki)
- Wikipedia links (defaulted to English)
- Other external links
- Quotes
- Citation needed links (links to comic #285)
- Tables
- TV Tropes links (shows warning to comic #609)
- References / Footnotes

Since these explanations are provided by people, recently uploaded comics will probably not have an explanation ready. In addition, some comics have incomplete explanations and are constantly being updated. If you would like to help the community (and other xkcd viewers), check the wiki at explainxkcd.com.                    

확장 프로그램 기본 정보

이름 xkcd explainer xkcd explainer
ID foejkfobkipagoaicljcokpdbdldfmdn
공식 URL https://chromewebstore.google.com/detail/xkcd-explainer/foejkfobkipagoaicljcokpdbdldfmdn
설명 Displays an explanation of an opened xkcd comic from the explain xkcd wiki.
파일 크기 13.01 KB
설치 횟수 74
현재 버전 2.2
최근 업데이트 2019-04-02
출시 날짜 2019-04-02
평점 4.67/5 총 3 개의 평점
개발자 Avadonia314
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/LenKagamine/xkcd-explainer
도움말 페이지 URL https://github.com/LenKagamine/xkcd-explainer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "xkcd explainer",
    "description": "Displays an explanation of an opened xkcd comic from the explain xkcd wiki.",
    "version": "2.2",
    "author": "Michael Kim",
    "homepage_url": "https:\/\/github.com\/lenkagamine\/xkcd-explainer",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/xkcd.com\/*",
                "https:\/\/xkcd.com\/*"
            ],
            "exclude_matches": [
                "http:\/\/xkcd.com\/archive\/",
                "https:\/\/xkcd.com\/archive\/"
            ],
            "css": [
                "explain.css"
            ],
            "js": [
                "main.js",
                "parser.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/explainxkcd.com\/*"
    ]
}