Gmail POP3 Fetcher

This Extension will automate fetch email from 3rd party server to your Gmail every minute. No need to do anything else.

Gmail POP3 Fetcher란 무엇입니까?

Gmail POP3 Fetcher은(는) Duong Minh Thong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Extension will automate fetch email from 3rd party server to your Gmail every minute. No need to do anything else."입니다.

확장 프로그램 스크린샷

screenshot

Gmail POP3 Fetcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        If you use Gmail's previously mentioned Mail Fetcher tool to grab email from other POP3-enabled email accounts, you may have noticed that it sometimes checks for new mail on very slow intervals—particularly if you're importing from a mostly inactive account.

The solution, then? Your account needs to get more email. Naturally, though, you don't want to flood your Gmail inbox with new email just so you can be sure your POP account is checking at more reasonable intervals.

This Extension will automate fetch email from 3rd party server to your Gmail every minute. No need to do anything else.                    

확장 프로그램 기본 정보

이름 Gmail POP3 Fetcher Gmail POP3 Fetcher
ID aflocdggkpgjglpbmdaabpkeklghkahl
공식 URL https://chromewebstore.google.com/detail/gmail-pop3-fetcher/aflocdggkpgjglpbmdaabpkeklghkahl
설명 This Extension will automate fetch email from 3rd party server to your Gmail every minute. No need to do anything else.
파일 크기 79.07 KB
설치 횟수 3,762
현재 버전 1.5.9
최근 업데이트 2015-11-02
출시 날짜 2015-11-01
평점 2.57/5 총 54 개의 평점
개발자 Duong Minh Thong
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail POP3 Fetcher",
    "short_name": "GmailPOP3Fetcher",
    "icons": {
        "16": "gmail_16.png",
        "48": "gmail_48.png",
        "128": "gmail_128.png"
    },
    "description": "This Extension will automate fetch email from 3rd party server to your Gmail every minute. No need to do anything else.",
    "version": "1.5.9",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "background.js",
                "jquery-2.1.4.min.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "http:\/\/mail.google.com\/*",
        "https:\/\/mail.google.com\/*"
    ],
    "browser_action": {
        "default_title": "Gmail POP3 Fetcher",
        "default_icon": "gmail_16.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}