Malapropism

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

Was ist Malapropism?

Malapropism ist eine Chrome-Erweiterung, die von isaaclandersen entwickelt wurde, und ihr Hauptmerkmal ist "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".

Erweiterungsscreenshots

screenshot

Malapropism-Erweiterungs-CRX-Datei herunterladen

Laden Sie Malapropism-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Malapropism Malapropism
ID alfflmhklceecdngpiphmkjmohcgjbig
Offizielle URL https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig
Beschreibung Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Dateigröße 13.54 KB
Installationsanzahl 102
Aktuelle Version 0.1
Letztes Update 2015-06-19
Veröffentlichungsdatum 2015-06-19
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler isaaclandersen
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}