Malapropism

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

Co to jest Malapropism?

Malapropism to rozszerzenie Chrome opracowane przez isaaclandersen, a jego główną funkcją jest „Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Malapropism

Pobierz pliki rozszerzeń Malapropism w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Malapropism Malapropism
ID alfflmhklceecdngpiphmkjmohcgjbig
Oficjalny URL https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig
Opis Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Rozmiar pliku 13.54 KB
Liczba instalacji 102
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2015-06-19
Data Publikacji 2015-06-19
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper isaaclandersen
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}