Transportation Costs

Transportation costs, sometimes a lot. See how much in Google Maps.

Что такое Transportation Costs?

Transportation Costs - это расширение Chrome, разработанное http://sites.google.com/site/haroldmartin, и его основная функция - "Transportation costs, sometimes a lot. See how much in Google Maps.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Transportation Costs

Скачайте файлы расширений Transportation Costs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Calculate the gas cost for a given route.

* Click to change mpg.
* Automatically finds gas cost based on starting address.

https://github.com/hbmartin/transportation-costs                    

Основная информация о расширении

Название Transportation Costs Transportation Costs
ID ffgbgdlphehhipcfgddngjnphjbobjlb
Официальный URL https://chrome.google.com/webstore/detail/transportation-costs/ffgbgdlphehhipcfgddngjnphjbobjlb
Описание Transportation costs, sometimes a lot. See how much in Google Maps.
Размер файла 14.67 KB
Количество установок 38
Текущая Версия 1.4.0
Последнее Обновление 2019-05-04
Дата публикации 2019-05-04
Рейтинг 2.67/5 Всего 3 оценок
Разработчик http://sites.google.com/site/haroldmartin
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Transportation Costs",
    "version": "1.4.0",
    "description": "Transportation costs, sometimes a lot. See how much in Google Maps.",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "geolocation",
        "storage",
        "*:\/\/www.google.com\/maps\/*",
        "*:\/\/*.gasbuddy.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/maps\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ]
}