URL Opener and EMAIL Extractor

URL Opener and EMAIL Extractor

"URL Opener and EMAIL Extractor" can effectively improve the efficiency of searching for email, LinkedIn and other social media…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "URL Opener and EMAIL Extractor",
  "version": "1.1.2",
  "action": {
    "default_title": "URL Opener and EMAIL Extractor",
    "default_popup": "popup.html",
    "default_icon": "icon48.png"
  },
  "icons": {
    "48": "icon48.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}