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/”。
擴展截圖
下載CHP Coordinate Map Link擴展crx文件
下載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 |
ID | dmfhnnchojmhbfgamododmboenaboden |
官方網址 | 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'" } |