xkcd #37
This extension actually implements xkcd #37. Yeah, for real.
xkcd #37 क्या है?
xkcd #37 https://blog.tomayac.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension actually implements xkcd #37. Yeah, for real."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में xkcd #37 एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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:\/\/*\/*" ] } |