Gmail Origin Flags

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

Gmail Origin Flagsとは何ですか?

Gmail Origin Flagsはgeorgios.kontaxisによって開発されたChromeの拡張機能で、その主な機能は「Displays the country flag and other information related to the origin of an e-mail」です。

拡張機能のスクリーンショット

screenshot
screenshot

Gmail Origin Flags拡張機能のCRXファイルをダウンロード

Gmail Origin Flags拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Gmail Origin Flags Gmail Origin Flags
ID eameeidodfbpfdocfccodpbkblgbepmo
公式URL https://chrome.google.com/webstore/detail/gmail-origin-flags/eameeidodfbpfdocfccodpbkblgbepmo
説明 Displays the country flag and other information related to the origin of an e-mail
ファイルサイズ 3.75 MB
インストール数 24
現在のバージョン 1.1
最終更新日 2014-01-02
公開日 2014-01-02
評価 1.00/5 合計 2 レビュー
開発者 georgios.kontaxis
支払い方法 free
対応言語 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\/*"
    ]
}