Transportation Costs

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

Vad är Transportation Costs?

Transportation Costs är en Chrome-tillägg utvecklad av http://sites.google.com/site/haroldmartin, och dess huvudfunktion är "Transportation costs, sometimes a lot. See how much in Google Maps.".

Tilläggsskärmbilder

screenshot

Ladda ner Transportation Costs-förlängningens CRX-fil

Ladda ner Transportation Costs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Transportation Costs Transportation Costs
ID ffgbgdlphehhipcfgddngjnphjbobjlb
Officiell webbadress https://chrome.google.com/webstore/detail/transportation-costs/ffgbgdlphehhipcfgddngjnphjbobjlb
Beskrivning Transportation costs, sometimes a lot. See how much in Google Maps.
Filstorlek 14.67 KB
Antal Installationer 38
Aktuell Version 1.4.0
Senast Uppdaterad 2019-05-04
Publiceringsdatum 2019-05-04
Betyg 2.67/5 Totalt 3 Betyg
Utvecklare http://sites.google.com/site/haroldmartin
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}