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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}