Gmail Origin Flags

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

Was ist Gmail Origin Flags?

Gmail Origin Flags ist eine Chrome-Erweiterung, die von georgios.kontaxis entwickelt wurde, und ihr Hauptmerkmal ist "Displays the country flag and other information related to the origin of an e-mail".

Erweiterungsscreenshots

screenshot
screenshot

Gmail Origin Flags-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gmail Origin Flags-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Gmail Origin Flags Gmail Origin Flags
ID eameeidodfbpfdocfccodpbkblgbepmo
Offizielle URL https://chrome.google.com/webstore/detail/gmail-origin-flags/eameeidodfbpfdocfccodpbkblgbepmo
Beschreibung Displays the country flag and other information related to the origin of an e-mail
Dateigröße 3.75 MB
Installationsanzahl 24
Aktuelle Version 1.1
Letztes Update 2014-01-02
Veröffentlichungsdatum 2014-01-02
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler georgios.kontaxis
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}