Malapropism

Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)

Malapropism क्या है?

Malapropism isaaclandersen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces words with their commonly mistaken for substitutes. (ex. cite -> site)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Malapropism एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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                    

एक्सटेंशन की मूल जानकारी

नाम Malapropism Malapropism
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"
        }
    ]
}