이 주소를 지도에서 보기

이 주소를 지도에서 보기

마우스로 드래그하여 선택한 주소를 네이버, 다음(카카오), 구글 지도에서 보여주는 확장 프로그램입니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "이 주소를 지도에서 보기",
  "description": "마우스로 드래그하여 선택한 주소를 네이버, 다음(카카오), 구글 지도에서 보여주는 확장 프로그램입니다.",
  "author": "gguldanzi",
  "version": "1.3",
  "icons": {
    "32": "img/icon32.png",
    "64": "img/icon64.png",
    "128": "img/icon128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/head.js",
        "img/icon32.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": "img/icon32.png",
    "default_title": "지도에서 보기 설정",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage"
  ]
}