xkcd explainer

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

ما هو xkcd explainer؟

xkcd explainer هو إضافة Chrome تم تطويرها بواسطة Avadonia314، والميزة الرئيسية لها هي "Displays an explanation of an opened xkcd comic from the explain xkcd wiki.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة xkcd explainer

قم بتنزيل ملفات الامتداد xkcd explainer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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\/*"
    ]
}