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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |