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)”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Malapropism Malapropism
ID alfflmhklceecdngpiphmkjmohcgjbig
官方網址 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"
        }
    ]
}