Malapropism
Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Hvad er Malapropism?
Malapropism er en Chrome-udvidelse udviklet af isaaclandersen, og dens hovedfunktion er "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".
Udvidelsesskærmbilleder
Download Malapropism-udvidelses-CRX-fil
Download Malapropism-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | alfflmhklceecdngpiphmkjmohcgjbig |
Officiel URL | https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig |
Beskrivelse | Replaces words with their commonly mistaken for substitutes. (ex. cite -> site) |
Filstørrelse | 13.54 KB |
Antal Installationer | 102 |
Nuværende Version | 0.1 |
Senest Opdateret | 2015-06-19 |
Udgivelsesdato | 2015-06-19 |
Bedømmelse | 3.00/5 Samlet 1 Bedømmelser |
Udvikler | isaaclandersen |
Betalingsmetode | free |
Understøttede Sprog | 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" } ] } |