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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में CHP Coordinate Map Link एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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'"
}