Transportation Costs

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

Co to jest Transportation Costs?

Transportation Costs to rozszerzenie Chrome opracowane przez http://sites.google.com/site/haroldmartin, a jego główną funkcją jest „Transportation costs, sometimes a lot. See how much in Google Maps.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Transportation Costs

Pobierz pliki rozszerzeń Transportation Costs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Transportation Costs Transportation Costs
ID ffgbgdlphehhipcfgddngjnphjbobjlb
Oficjalny URL https://chrome.google.com/webstore/detail/transportation-costs/ffgbgdlphehhipcfgddngjnphjbobjlb
Opis Transportation costs, sometimes a lot. See how much in Google Maps.
Rozmiar pliku 14.67 KB
Liczba instalacji 38
Aktualna Wersja 1.4.0
Ostatnia Aktualizacja 2019-05-04
Data Publikacji 2019-05-04
Ocena 2.67/5 Łącznie 3 Oceny
Deweloper http://sites.google.com/site/haroldmartin
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}