xkcd explainer

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

xkcd explainer là gì?

xkcd explainer là một tiện ích mở rộng Chrome được phát triển bởi Avadonia314, và tính năng chính của nó là "Displays an explanation of an opened xkcd comic from the explain xkcd wiki.".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng xkcd explainer

Tải xuống các tệp mở rộng xkcd explainer 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

                        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.                    

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

Tên xkcd explainer xkcd explainer
ID foejkfobkipagoaicljcokpdbdldfmdn
URL Chính Thức https://chromewebstore.google.com/detail/xkcd-explainer/foejkfobkipagoaicljcokpdbdldfmdn
Mô tả Displays an explanation of an opened xkcd comic from the explain xkcd wiki.
Kích Thước Tệp 13.01 KB
Số Lần Cài Đặt 74
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2019-04-02
Ngày Phát Hành 2019-04-02
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Avadonia314
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/LenKagamine/xkcd-explainer
URL Trang Trợ Giúp https://github.com/LenKagamine/xkcd-explainer/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}