Malapropism
Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)
什么是Malapropism?
Malapropism是由isaaclandersen开发的Chrome扩展程序,该扩展的主要功能是“Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)”。
扩展截图
下载Malapropism扩展crx文件
下载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" } ] } |