zizozz

zizozz

Zizozz- find email lists

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "zizozz",
  "permissions": [
    "http://localhost:3000/",
    "https://zizozz.com/",
    "storage"
  ],
  "description": "Zizozz- find email lists",
  "version": "1.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.google.com/*"
      ],
      "css": [
        "public.css"
      ],
      "js": [
        "jquery.js",
        "assets/jqueryui.js",
        "app.js",
        "mainpopup.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' http://localhost:3000; object-src 'self'"
}