MailCheck

Suggests a right domain when you misspell it in an email address.

MailCheck क्या है?

MailCheck matthieu.bilbille द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Suggests a right domain when you misspell it in an email address."।

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

screenshot
screenshot

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

crx प्रारूप में MailCheck एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        When a user types in "[email protected]", Mailcheck will suggest "[email protected]".

This extension uses the javascript library mailcheck.js

------------------------------------------------

Changelog:

1.6
- Dropped Zepto dependency in favor of jQuery
- Upgraded to MailCheck 1.1.0
- Upgraded to Chrome UI bootstrap 1.4.0
- Used minimalistic bootstrap

1.5
- Localized options page

1.4
- Added tooltips
- Fixed bugs on options page

1.3
- Fixed minor bugs
- Added more options

1.2:
- Added options page

1.1:
- Added i18n support (English, French, Japanese)
- Switched to Zepto JS library
- Fixed bug on form loaded dynamically

1.0:
First release.

For full details (or contribution), please go to http://github.com/mbilbille/chrome-mailcheck                    

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

नाम MailCheck MailCheck
ID olghnkfiljkinfbnichocbepnimdfclf
आधिकारिक URL https://chromewebstore.google.com/detail/mailcheck/olghnkfiljkinfbnichocbepnimdfclf
विवरण Suggests a right domain when you misspell it in an email address.
फ़ाइल का आकार 61.37 KB
स्थापना संख्या 1,334
वर्तमान संस्करण 1.6.2
अंतिम अपडेट 2015-02-03
प्रकाशन तिथि 2015-02-03
रेटिंग 3.71/5 कुल 7 रेटिंग्स
डेवलपर matthieu.bilbille
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://github.com/mbilbille/chrome-mailcheck
सहायता पृष्ठ URL https://github.com/mbilbille/chrome-mailcheck/issues
समर्थित भाषाएँ en,fr,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.6.2",
    "default_locale": "en",
    "permissions": [
        "notifications",
        "storage"
    ],
    "icons": {
        "16": "resources\/images\/icon16.png",
        "48": "resources\/images\/icon48.png",
        "128": "resources\/images\/icon128.png"
    },
    "web_accessible_resources": [
        "resources\/images\/icon16.png",
        "resources\/images\/icon128.png"
    ],
    "options_page": "resources\/pages\/options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "resources\/lib\/jquery.min.js",
                "resources\/lib\/mailcheck.min.js",
                "resources\/lib\/bootstrap.min.js",
                "resources\/js\/script.min.js"
            ],
            "css": [
                "resources\/css\/style.min.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}