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文件

下载xkcd explainer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
    ]
}