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 là gì?
CHP Coordinate Map Link là một tiện ích mở rộng Chrome được phát triển bởi https://shaunsational.github.io, và tính năng chính của nó là "Adds a link to popup a google map to the coordinates on http://cad.chp.ca.gov/".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CHP Coordinate Map Link
Tải xuống các tệp mở rộng CHP Coordinate Map Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CHP Coordinate Map Link |
ID | dmfhnnchojmhbfgamododmboenaboden |
URL Chính Thức | https://chromewebstore.google.com/detail/chp-coordinate-map-link/dmfhnnchojmhbfgamododmboenaboden |
Mô tả | Adds a link to popup a google map to the coordinates on http://cad.chp.ca.gov/ |
Kích Thước Tệp | 43.11 KB |
Số Lần Cài Đặt | 36 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2018-11-06 |
Ngày Phát Hành | 2018-11-06 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://shaunsational.github.io |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://shaunsational.github.io/extensions#chp-coordinates |
URL Trang Trợ Giúp | https://github.com/shaunsational/chrome-ext-CHP/issues |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |