xkcd #37
This extension actually implements xkcd #37. Yeah, for real.
xkcd #37คืออะไร?
xkcd #37 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://blog.tomayac.com และคุณลักษณะหลักของมันคือ "This extension actually implements xkcd #37. Yeah, for real."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย xkcd #37
ดาวน์โหลดไฟล์ส่วนขยาย xkcd #37 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Albeit famous exceptions exist in form of Wikis, the Web today is still mostly a read-only experience. This leaves the Web content consumer exposed to all sorts of typographic cruelties, such as representing the ellipsis character ’…’ with three single full stops “...”, incorrect usage of a normal space where a non-breaking space would be preferred and even omission of the Oxford comma... While fighting the cause, namely sloppy Web authors, is like a fight against wind mills and certainly impossible to realize on Web scale, fighting the symptoms is a realistic option. Using client-side work-arounds, the Web can actually be fixed one page at a time. With this extension, we show how via part-of-speech tagging and JavaScript DOM event listeners, the Web can be made a better place. On a related note, this extension has the bad ass-feature of actually implementing xkcd #37: http://xkcd.com/37/ Yeah, for real Read the accompanying scientific paper: https://docs.google.com/open?id=0B9LlSNwL2H8YbkpsV0pLQnM2bXc
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | xkcd #37 |
ID | kjlobohamcahepbjhcnjhhpdgmhjkjli |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/xkcd-37/kjlobohamcahepbjhcnjhhpdgmhjkjli |
คำอธิบาย | This extension actually implements xkcd #37. Yeah, for real. |
ขนาดไฟล์ | 722 KB |
จำนวนการติดตั้ง | 65 |
เวอร์ชันปัจจุบัน | 1.0.6 |
อัปเดตครั้งล่าสุด | 2020-12-05 |
วันที่เผยแพร่ | 2013-06-27 |
คะแนน | 2.73/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | https://blog.tomayac.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://docs.google.com/open?id=0B9LlSNwL2H8YMGVlZjIzZTAtN2JiZS00MzIxLThjNDYtMDFhMDQ3NTEzYzU2 |
URL หน้าช่วยเหลือ | http://twitter.com/tomayac |
URL หน้านโยบายความเป็นส่วนตัว | https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt |
ภาษาที่รองรับ | de,en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.0.6", "manifest_version": 2, "description": "__MSG_extDesc__", "icons": { "48": "icon_48.png", "128": "icon_128.png" }, "default_locale": "en_US", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "lexer.js", "POSTagger.js", "lexicon.js", "amazon.js", "content_script.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |