Emails and social networks on Google Maps - Scrap.io

Emails and social networks on Google Maps - Scrap.io

The Scrap.io Chrome extension adds business emails and social networks to Google Maps, and allows you to contact them in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_manifest_name__",
  "description": "__MSG_manifest_description__",
  "version": "1.0.4",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://scrap.io/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "/img/logo-dark-128.png",
    "default_popup": "/pages/popup/index.html"
  },
  "default_locale": "en",
  "icons": {
    "128": "/img/logo-dark-128.png",
    "512": "/img/logo-dark-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://maps.google.com/*",
        "https://*.google.com/maps/*",
        "https://*.google.com/maps?*",
        "https://maps.google.fr/*",
        "https://*.google.fr/maps/*",
        "https://*.google.fr/maps?*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/styles.css",
        "css/fonts.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*",
        "js/*",
        "img/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}