Gmail Origin Flags

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

What is Gmail Origin Flags?

Gmail Origin Flags is a Chrome extension developed by georgios.kontaxis, and its main feature is "Displays the country flag and other information related to the origin of an e-mail".

Extension Screenshots

screenshot
screenshot

Download Gmail Origin Flags Extension CRX File

Download Gmail Origin Flags extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Gmail Origin Flags Gmail Origin Flags
ID eameeidodfbpfdocfccodpbkblgbepmo
Official URL https://chrome.google.com/webstore/detail/gmail-origin-flags/eameeidodfbpfdocfccodpbkblgbepmo
Description Displays the country flag and other information related to the origin of an e-mail
File Size 3.75 MB
Installation Count 24
Current Version 1.1
Last Updated 2014-01-02
Publish Date 2014-01-02
Rating 1.00/5 Total 2 Ratings
Developer georgios.kontaxis
Payment Type free
Supported Languages 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\/*"
    ]
}