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".
Снимки экрана расширения
Скачать файл 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.
Основная информация о расширении
Название | |
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\/*" ] } |