Traffic Trend

Displays the current travel time and trend for traffic between two locations. Great for deciding when to leave work.

Что такое Traffic Trend?

Traffic Trend - это расширение Chrome, разработанное green.kelby, и его основная функция - "Displays the current travel time and trend for traffic between two locations. Great for deciding when to leave work.".

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

screenshot

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

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

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

                        Specify a start address and a destination address, and Traffic Trend keeps track of the traffic conditions between the two locations.  The current travel time is always displayed in a badge on the extension's icon, and the icon changes color based on the current traffic trend.  Great for deciding when to leave work.                    

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

Название Traffic Trend Traffic Trend
ID nhoonblgekanhciolgcmdkebbmjpfokm
Официальный URL https://chromewebstore.google.com/detail/traffic-trend/nhoonblgekanhciolgcmdkebbmjpfokm
Описание Displays the current travel time and trend for traffic between two locations. Great for deciding when to leave work.
Размер файла 33.5 KB
Количество установок 37
Текущая Версия 1.2
Последнее Обновление 2015-05-28
Дата публикации 2015-05-28
Рейтинг 5.00/5 Всего 3 оценок
Разработчик green.kelby
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Traffic Trend",
    "description": "Displays the current travel time and trend for traffic between two locations.  Great for deciding when to leave work.",
    "version": "1.2",
    "browser_action": {
        "default_icon": "default.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "traffic.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/maps.googleapis.com https:\/\/maps.gstatic.com https:\/\/ecn.dev.virtualearth.net https:\/\/dev.virtualearth.net; object-src 'self'",
    "permissions": [
        "storage",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/dev.virtualearth.net\/"
    ]
}