Malapropism

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

¿Qué es Malapropism?

Malapropism es una extensión de Chrome desarrollada por isaaclandersen, y su función principal es "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Malapropism

Descarga archivos de extensión Malapropism en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Malapropism Malapropism
ID alfflmhklceecdngpiphmkjmohcgjbig
URL Oficial https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig
Descripción Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Tamaño del Archivo 13.54 KB
Cantidad de Instalaciones 102
Versión Actual 0.1
Última Actualización 2015-06-19
Fecha de Publicación 2015-06-19
Calificación 3.00/5 Total de 1 Calificaciones
Desarrollador isaaclandersen
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}