Gmail Origin Flags

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

Gmail Origin Flagsคืออะไร?

Gmail Origin Flags เป็นส่วนขยายของ Chrome ที่พัฒนาโดย georgios.kontaxis และคุณลักษณะหลักของมันคือ "Displays the country flag and other information related to the origin of an e-mail"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Origin Flags

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
    ]
}