Gmail Origin Flags

Displays the country flag and other information related to the origin of an e-mail

Cos'è Gmail Origin Flags?

Gmail Origin Flags è un'estensione di Chrome sviluppata da georgios.kontaxis, e la sua funzione principale è "Displays the country flag and other information related to the origin of an e-mail".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Gmail Origin Flags

Scarica i file di estensione Gmail Origin Flags in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Additional functionality to Gmail (mail.google.com) to parse e-mail envelope headers and display information such as the country of message origin.                    

Informazioni di Base sull'Estensione

Nome Gmail Origin Flags Gmail Origin Flags
ID eameeidodfbpfdocfccodpbkblgbepmo
URL Ufficiale https://chrome.google.com/webstore/detail/gmail-origin-flags/eameeidodfbpfdocfccodpbkblgbepmo
Descrizione Displays the country flag and other information related to the origin of an e-mail
Dimensione del File 3.75 MB
Conteggio Installazioni 24
Versione Corrente 1.1
Ultimo Aggiornamento 2014-01-02
Data di Pubblicazione 2014-01-02
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore georgios.kontaxis
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Origin Flags",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Displays the country flag and other information related to the origin of an e-mail",
    "icons": {
        "16": "icons\/passports-16.png",
        "48": "icons\/passports-48.png",
        "128": "icons\/passports-128.png"
    },
    "homepage_url": "http:\/\/www.cs.columbia.edu\/~kontaxis\/",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "all_frames": true,
            "js": [
                "cs_magic.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/mail.google.com\/*"
    ],
    "web_accessible_resources": [
        "flags\/*"
    ]
}