Malapropism

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

O que é Malapropism?

Malapropism é uma extensão do Chrome desenvolvida por isaaclandersen, e sua principal característica é "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Malapropism

Baixe arquivos de extensão Malapropism no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Malapropism Malapropism
ID alfflmhklceecdngpiphmkjmohcgjbig
URL Oficial https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig
Descrição Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Tamanho do Arquivo 13.54 KB
Contagem de Instalações 102
Versão Atual 0.1
Última Atualização 2015-06-19
Data de Publicação 2015-06-19
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor isaaclandersen
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}