Malapropism
Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Vad är Malapropism?
Malapropism är en Chrome-tillägg utvecklad av isaaclandersen, och dess huvudfunktion är "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".
Tilläggsskärmbilder
Ladda ner Malapropism-förlängningens CRX-fil
Ladda ner Malapropism-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | alfflmhklceecdngpiphmkjmohcgjbig |
Officiell webbadress | https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig |
Beskrivning | Replaces words with their commonly mistaken for substitutes. (ex. cite -> site) |
Filstorlek | 13.54 KB |
Antal Installationer | 102 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2015-06-19 |
Publiceringsdatum | 2015-06-19 |
Betyg | 3.00/5 Totalt 1 Betyg |
Utvecklare | isaaclandersen |
Betalningssätt | free |
Stödda Språk | 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" } ] } |