xkcd #37

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

xkcd #37란 무엇입니까?

xkcd #37은(는) https://blog.tomayac.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension actually implements xkcd #37. Yeah, for real."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

xkcd #37 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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:\/\/*\/*"
    ]
}