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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Word Welter demonstrates typoglycemia by scrambling the characters in all words in a webpage, except for the first and last."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Word Welter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}