xkcd explainer

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

¿Qué es xkcd explainer?

xkcd explainer es una extensión de Chrome desarrollada por Avadonia314, y su función principal es "Displays an explanation of an opened xkcd comic from the explain xkcd wiki.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión xkcd explainer

Descarga archivos de extensión xkcd explainer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre xkcd explainer xkcd explainer
ID foejkfobkipagoaicljcokpdbdldfmdn
URL Oficial https://chromewebstore.google.com/detail/xkcd-explainer/foejkfobkipagoaicljcokpdbdldfmdn
Descripción Displays an explanation of an opened xkcd comic from the explain xkcd wiki.
Tamaño del Archivo 13.01 KB
Cantidad de Instalaciones 74
Versión Actual 2.2
Última Actualización 2019-04-02
Fecha de Publicación 2019-04-02
Calificación 4.67/5 Total de 3 Calificaciones
Desarrollador Avadonia314
Tipo de Pago free
Sitio Web de la Extensión https://github.com/LenKagamine/xkcd-explainer
URL de la Página de Ayuda https://github.com/LenKagamine/xkcd-explainer/issues
Idiomas Soportados 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\/*"
    ]
}