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
公式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
}