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" } ] } |