Discoverly

Discoverly

Reveal, and now save, more complete social contact info alongside those online profiles you normally view.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Discoverly",
  "description": "Reveal, and now save, more complete social contact info alongside those online profiles you normally view.",
  "version": "1.21",
  "permissions": [
    "tabs",
    "activeTab",
    "cookies",
    "storage",
    "runtime"
  ],
  "host_permissions": [
    "https://mail.google.com/*",
    "https://*.facebook.com/*",
    "https://*.discover.ly/*",
    "http://localhost:9000/*"
  ],
  "icons": {
    "16": "/img/dly-icon_16.png",
    "32": "/img/dly-icon_32.png",
    "48": "/img/dly-icon_48.png",
    "128": "/img/dly-icon_128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "/img/dly-icon_16.png",
      "32": "/img/dly-icon_32.png",
      "48": "/img/dly-icon_48.png",
      "128": "/img/dly-icon_128.png"
    }
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://*.facebook.com/*",
        "https://*.linkedin.com/*",
        "https://*.twitter.com/*",
        "https://discover.ly/*",
        "https://*.discover.ly/*",
        "http://localhost:9000/*"
      ],
      "js": [
        "content_scripts.js",
        "installation_check.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "mixpanel.min.js"
      ]
    }
  ],
  "oauth2": {
    "client_id": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzELJU7thb5Qd9yn3XorC4Km+o/jCeaPcjD48xT5+ZAKG2y8x24uOjbAZIHeXnEcQPbAfxwQtNr1WNSgm8960iSeFT/izJZU0pY5ikYsfQVlp8/UY5/qBv1/2ltn4DY4mfxgyL1O7lIACNEsaOs/UlBLBvtKhgLZqQ6sbnGb6Mq9CNm5eXuJhDD8cja2HX1FXAwEc3oH0YaIVtLm3EW+4wG1A6tCVywX03KQiBX53z5ogluufBJU2aU9wJe/fX/i7hrOMwGLp0defzp9yL/6mKEEFtEW6X+mgmLF4gB+vWZ5Gw1vUjNc81uWk3OMo/PwxHfaIFkMpMLssMIIjISwlYQIDAQAB",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}