CHP Coordinate Map Link

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

¿Qué es CHP Coordinate Map Link?

CHP Coordinate Map Link es una extensión de Chrome desarrollada por https://shaunsational.github.io, y su función principal es "Adds a link to popup a google map to the coordinates on http://cad.chp.ca.gov/".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión CHP Coordinate Map Link

Descarga archivos de extensión CHP Coordinate Map Link en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre CHP Coordinate Map Link CHP Coordinate Map Link
ID dmfhnnchojmhbfgamododmboenaboden
URL Oficial https://chromewebstore.google.com/detail/chp-coordinate-map-link/dmfhnnchojmhbfgamododmboenaboden
Descripción Adds a link to popup a google map to the coordinates on http://cad.chp.ca.gov/
Tamaño del Archivo 43.11 KB
Cantidad de Instalaciones 36
Versión Actual 1.1
Última Actualización 2018-11-06
Fecha de Publicación 2018-11-06
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador https://shaunsational.github.io
Tipo de Pago free
Sitio Web de la Extensión https://shaunsational.github.io/extensions#chp-coordinates
URL de la Página de Ayuda https://github.com/shaunsational/chrome-ext-CHP/issues
Idiomas Soportados 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'"
}