Gmail Origin Flags

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

Co to jest Gmail Origin Flags?

Gmail Origin Flags to rozszerzenie Chrome opracowane przez georgios.kontaxis, a jego główną funkcją jest „Displays the country flag and other information related to the origin of an e-mail”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Gmail Origin Flags

Pobierz pliki rozszerzeń Gmail Origin Flags w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Gmail Origin Flags Gmail Origin Flags
ID eameeidodfbpfdocfccodpbkblgbepmo
Oficjalny URL https://chrome.google.com/webstore/detail/gmail-origin-flags/eameeidodfbpfdocfccodpbkblgbepmo
Opis Displays the country flag and other information related to the origin of an e-mail
Rozmiar pliku 3.75 MB
Liczba instalacji 24
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2014-01-02
Data Publikacji 2014-01-02
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper georgios.kontaxis
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}