Malapropism

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

Wat is Malapropism?

Malapropism is een Chrome-extensie ontwikkeld door isaaclandersen, en de belangrijkste functie is "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Malapropism

Download Malapropism-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Malapropism Malapropism
ID alfflmhklceecdngpiphmkjmohcgjbig
Officiële URL https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig
Beschrijving Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Bestandsgrootte 13.54 KB
Aantal Installaties 102
Huidige Versie 0.1
Laatst Bijgewerkt 2015-06-19
Publicatiedatum 2015-06-19
Beoordeling 3.00/5 Totaal 1 Beoordelingen
Ontwikkelaar isaaclandersen
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}