xkcd #37

This extension actually implements xkcd #37. Yeah, for real.

xkcd #37 là gì?

xkcd #37 là một tiện ích mở rộng Chrome được phát triển bởi https://blog.tomayac.com, và tính năng chính của nó là "This extension actually implements xkcd #37. Yeah, for real.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng xkcd #37

Tải xuống các tệp mở rộng xkcd #37 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên xkcd #37 xkcd #37
ID kjlobohamcahepbjhcnjhhpdgmhjkjli
URL Chính Thức https://chromewebstore.google.com/detail/xkcd-37/kjlobohamcahepbjhcnjhhpdgmhjkjli
Mô tả This extension actually implements xkcd #37. Yeah, for real.
Kích Thước Tệp 722 KB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2020-12-05
Ngày Phát Hành 2013-06-27
Đánh Giá 2.73/5 Tổng số 11 Đánh Giá
Nhà Phát Triển https://blog.tomayac.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://docs.google.com/open?id=0B9LlSNwL2H8YMGVlZjIzZTAtN2JiZS00MzIxLThjNDYtMDFhMDQ3NTEzYzU2
URL Trang Trợ Giúp http://twitter.com/tomayac
URL Trang Chính Sách Bảo Mật https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}