Traffic Trend

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

Was ist Traffic Trend?

Traffic Trend ist eine Chrome-Erweiterung, die von green.kelby entwickelt wurde, und ihr Hauptmerkmal ist "Displays the current travel time and trend for traffic between two locations. Great for deciding when to leave work.".

Erweiterungsscreenshots

screenshot

Traffic Trend-Erweiterungs-CRX-Datei herunterladen

Laden Sie Traffic Trend-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Traffic Trend Traffic Trend
ID nhoonblgekanhciolgcmdkebbmjpfokm
Offizielle URL https://chromewebstore.google.com/detail/traffic-trend/nhoonblgekanhciolgcmdkebbmjpfokm
Beschreibung Displays the current travel time and trend for traffic between two locations. Great for deciding when to leave work.
Dateigröße 33.5 KB
Installationsanzahl 37
Aktuelle Version 1.2
Letztes Update 2015-05-28
Veröffentlichungsdatum 2015-05-28
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler green.kelby
Zahlungsart free
Unterstützte Sprachen 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\/"
    ]
}