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