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.”。
擴展截圖
下載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 |
ID | foejkfobkipagoaicljcokpdbdldfmdn |
官方網址 | 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\/*" ] } |