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ファイルをダウンロード

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