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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย xkcd explainer
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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\/*" ] } |