Pin Drop

Pin Drop

Browser extension to drop Pins from the web to your Pin Drop account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Browser extension to drop Pins from the web to your Pin Drop account",
  "version": "6.0.6",
  "manifest_version": 3,
  "name": "Pin Drop",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "geocodeStatusSuccess.html",
        "geocodeStatusFailure.html"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "tabs",
    "contextMenus",
    "storage"
  ],
  "icons": {
    "16": "icon-34.png",
    "128": "icon-128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}