Malapropism

Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)

What is Malapropism?

Malapropism is a Chrome extension developed by isaaclandersen, and its main feature is "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".

Extension Screenshots

screenshot

Download Malapropism Extension CRX File

Download Malapropism extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A prank extension which replaces words with their commonly mistaken for substitutes. (ex. cite -> site)

Malapropism makes the internet a slightly more infuriating place, making the victim (user) question his or her own proper grammar/sanity.  

Install on the computers of: Friends, Enemies, Parents, Co-Workers, Significant Others, Grammar Nazi's                    

Extension Basic Information

Name Malapropism Malapropism
ID alfflmhklceecdngpiphmkjmohcgjbig
Official URL https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig
Description Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
File Size 13.54 KB
Installation Count 102
Current Version 0.1
Last Updated 2015-06-19
Publish Date 2015-06-19
Rating 3.00/5 Total 1 Ratings
Developer isaaclandersen
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Malapropism",
    "description": "Replaces words with their commonly mistaken for substitutes.  (ex. cite -> site)",
    "version": "0.1",
    "options_page": "options.html",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "bug16.png",
        "48": "bug48.png",
        "128": "bug128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}