Uview

Uview

Be in any movie or tv show. Be in any photo.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Uview",
  "version": "2",
  "manifest_version": 2,
  "description": "Be in any movie or tv show. Be in any photo.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "browser_action": {
    "default_icon": "favicon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "draggabilty.js",
        "face-api.js",
        "script.js"
      ],
      "css": [
        "script.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "models/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": []
}