Gmail Origin Flags

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

Co je Gmail Origin Flags?

Gmail Origin Flags je rozšíření Chrome vyvinuté georgios.kontaxis, a jeho hlavní funkcí je „Displays the country flag and other information related to the origin of an e-mail“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Gmail Origin Flags

Stáhněte si soubory rozšíření Gmail Origin Flags ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Gmail Origin Flags Gmail Origin Flags
ID eameeidodfbpfdocfccodpbkblgbepmo
Oficiální URL https://chrome.google.com/webstore/detail/gmail-origin-flags/eameeidodfbpfdocfccodpbkblgbepmo
Popis Displays the country flag and other information related to the origin of an e-mail
Velikost souboru 3.75 MB
Počet instalací 24
Aktuální Verze 1.1
Poslední Aktualizace 2014-01-02
Datum Vydání 2014-01-02
Hodnocení 1.00/5 Celkem 2 Hodnocení
Vývojář georgios.kontaxis
Typ Platby free
Podporované Jazyky 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\/*"
    ]
}