Gmail POP3 Fetcher

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

Qu'est-ce que Gmail POP3 Fetcher ?

Gmail POP3 Fetcher est une extension Chrome développée par Duong Minh Thong, et sa fonction principale est "This Extension will automate fetch email from 3rd party server to your Gmail every minute. No need to do anything else.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gmail POP3 Fetcher

Téléchargez les fichiers d'extension Gmail POP3 Fetcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Gmail POP3 Fetcher Gmail POP3 Fetcher
ID aflocdggkpgjglpbmdaabpkeklghkahl
URL Officiel https://chromewebstore.google.com/detail/gmail-pop3-fetcher/aflocdggkpgjglpbmdaabpkeklghkahl
Description This Extension will automate fetch email from 3rd party server to your Gmail every minute. No need to do anything else.
Taille du Fichier 79.07 KB
Nombre d'Installations 3,762
Version Actuelle 1.5.9
Dernière Mise à Jour 2015-11-02
Date de Publication 2015-11-01
Évaluation 2.57/5 Total 54 Évaluations
Développeur Duong Minh Thong
Type de Paiement free
Langues Prises en Charge 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
}