Malapropism
Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Qu'est-ce que Malapropism ?
Malapropism est une extension Chrome développée par isaaclandersen, et sa fonction principale est "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Malapropism
Téléchargez les fichiers d'extension Malapropism au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | alfflmhklceecdngpiphmkjmohcgjbig |
URL Officiel | https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig |
Description | Replaces words with their commonly mistaken for substitutes. (ex. cite -> site) |
Taille du Fichier | 13.54 KB |
Nombre d'Installations | 102 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2015-06-19 |
Date de Publication | 2015-06-19 |
Évaluation | 3.00/5 Total 1 Évaluations |
Développeur | isaaclandersen |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |