Malapropism
Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
Malapropism là gì?
Malapropism là một tiện ích mở rộng Chrome được phát triển bởi isaaclandersen, và tính năng chính của nó là "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Malapropism
Tải xuống các tệp mở rộng Malapropism dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | alfflmhklceecdngpiphmkjmohcgjbig |
URL Chính Thức | https://chrome.google.com/webstore/detail/malapropism/alfflmhklceecdngpiphmkjmohcgjbig |
Mô tả | Replaces words with their commonly mistaken for substitutes. (ex. cite -> site) |
Kích Thước Tệp | 13.54 KB |
Số Lần Cài Đặt | 102 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2015-06-19 |
Ngày Phát Hành | 2015-06-19 |
Đánh Giá | 3.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | isaaclandersen |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |