CHP Coordinate Map Link

Adds a link to popup a google map to the coordinates on http://cad.chp.ca.gov/

Τι είναι το CHP Coordinate Map Link;

Το CHP Coordinate Map Link είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://shaunsational.github.io, και η κύρια λειτουργία του είναι "Adds a link to popup a google map to the coordinates on http://cad.chp.ca.gov/".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης CHP Coordinate Map Link

Λήψη αρχείων επέκτασης CHP Coordinate Map Link σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Changes the coordinates on the CHP page to a clickable link.  The link will pop open a map with a pin showing the location of the incident with a small description.  If the popup is left open the map will add subsequent pins to the same map (although if you switch communication centers it seems to go away).

http://cad.chp.ca.gov/

@shaunsational                    

Βασικές Πληροφορίες Επέκτασης

Όνομα CHP Coordinate Map Link CHP Coordinate Map Link
ID dmfhnnchojmhbfgamododmboenaboden
Επίσημο URL https://chromewebstore.google.com/detail/chp-coordinate-map-link/dmfhnnchojmhbfgamododmboenaboden
Περιγραφή Adds a link to popup a google map to the coordinates on http://cad.chp.ca.gov/
Μέγεθος Αρχείου 43.11 KB
Αριθμός Εγκαταστάσεων 36
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2018-11-06
Ημερομηνία Δημοσίευσης 2018-11-06
Αξιολόγηση 4.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://shaunsational.github.io
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://shaunsational.github.io/extensions#chp-coordinates
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/shaunsational/chrome-ext-CHP/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CHP Coordinate Map Link",
    "description": "Adds a link to popup a google map to the coordinates on http:\/\/cad.chp.ca.gov\/",
    "version": "1.1",
    "icons": {
        "16": "icon.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/cad.chp.ca.gov\/*",
        "https:\/\/cad.chp.ca.gov\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/cad.chp.ca.gov\/*"
            ],
            "css": [
                "cad.css"
            ],
            "js": [
                "jquery.min.js",
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "map.htm"
    ],
    "content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'"
}