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文件

下載Gmail POP3 Fetcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}