MailCheck

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

MailCheck란 무엇입니까?

MailCheck은(는) matthieu.bilbille에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Suggests a right domain when you misspell it in an email address."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

MailCheck 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}