Malapropism
Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Что такое Malapropism?
Malapropism - это расширение Chrome, разработанное isaaclandersen, и его основная функция - "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".
Снимки экрана расширения
Скачать файл CRX расширения Malapropism
Скачайте файлы расширений Malapropism в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | alfflmhklceecdngpiphmkjmohcgjbig |
Официальный URL | https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig |
Описание | Replaces words with their commonly mistaken for substitutes. (ex. cite -> site) |
Размер файла | 13.54 KB |
Количество установок | 102 |
Текущая Версия | 0.1 |
Последнее Обновление | 2015-06-19 |
Дата публикации | 2015-06-19 |
Рейтинг | 3.00/5 Всего 1 оценок |
Разработчик | isaaclandersen |
Тип оплаты | free |
Поддерживаемые языки | 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" } ] } |