Word Welter

Word Welter demonstrates typoglycemia by scrambling the characters in all words in a webpage, except for the first and last.

Word Welter란 무엇입니까?

Word Welter은(는) Ben Smith에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Word Welter demonstrates typoglycemia by scrambling the characters in all words in a webpage, except for the first and last."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Word Welter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The inspiration for this extension is a neologism called Typoglycemia (http://en.wikipedia.org/wiki/Typoglycemia) which is the "purported recent discovery about the cognitive processes behind reading written text".

For example, most people can understand the following even though the text has been scrambled:

"I cdn'uolt blveiee taht I cluod aulaclty uesdnatnrd waht I was rdanieg"

The original text is:

"I couldn't believe that I could actually understand what I was reading"

Word Welter randomises the characters in all words in a webpage, except for the first and last characters.

The scrambling code has been developed so that it can cope with many different types of words e.g. words ending in punctuation, words with apostrophes. However, this is not a comprehensive text parser so please let me know if you find any issues. 

Unlike the example taken from the aforementioned Wikipedia page, for a word like "couldn't", I have chosen to fix the first character and also the last three (i.e. "n't") and then scramble all the rest; I found that the words get much harder to decipher if this approach is not taken!                    

확장 프로그램 기본 정보

이름 Word Welter Word Welter
ID ahmpgoebcklpogmobamdjliigbncofep
공식 URL https://chromewebstore.google.com/detail/word-welter/ahmpgoebcklpogmobamdjliigbncofep
설명 Word Welter demonstrates typoglycemia by scrambling the characters in all words in a webpage, except for the first and last.
파일 크기 156 KB
설치 횟수 60
현재 버전 1.1.3
최근 업데이트 2014-06-26
출시 날짜 2014-06-25
평점 5.00/5 총 2 개의 평점
개발자 Ben Smith
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/FreshHub/WordWelter
도움말 페이지 URL https://github.com/FreshHub/WordWelter
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Welter",
    "version": "1.1.3",
    "browser_action": {
        "default_icon": {
            "19": "WordWelterIcon19x19_Off.png"
        },
        "default_title": "Word Welter Off"
    },
    "description": "Word Welter demonstrates typoglycemia by scrambling the characters in all words in a webpage, except for the first and last.",
    "icons": {
        "16": "WordWelterIcon16x16.png",
        "48": "WordWelterIcon48x48.png",
        "128": "WordWelterIcon128x128.png"
    },
    "permissions": [
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "jquery-1.10.2.min.map"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.10.2.min.js"
            ],
            "all_frames": true
        }
    ]
}