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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a link to popup a google map to the coordinates on http://cad.chp.ca.gov/"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

CHP Coordinate Map Link 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}