Malapropism
Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Cos'è Malapropism?
Malapropism è un'estensione di Chrome sviluppata da isaaclandersen, e la sua funzione principale è "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Malapropism
Scarica i file di estensione Malapropism in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | alfflmhklceecdngpiphmkjmohcgjbig |
URL Ufficiale | https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig |
Descrizione | Replaces words with their commonly mistaken for substitutes. (ex. cite -> site) |
Dimensione del File | 13.54 KB |
Conteggio Installazioni | 102 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2015-06-19 |
Data di Pubblicazione | 2015-06-19 |
Valutazione | 3.00/5 Totale 1 Valutazioni |
Sviluppatore | isaaclandersen |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |