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
官方網址 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\/*"
    ]
}