VEEGS

VEEGS

VEEGS is a cruelty-free 🌱 recipe and fashion suggestions and recommendations Chrome Extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "VEEGS",
  "description": "VEEGS is a cruelty-free 🌱 recipe and fashion suggestions and recommendations Chrome Extension.",
  "version": "2.1",
  "browser_action": {
    "default_icon": {
      "16": "icons/icon-16x16.png",
      "19": "icons/icon-19x19.png",
      "32": "icons/icon-32x32.png",
      "38": "icons/icon-38x38.png"
    },
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "http://*/*",
    "https://*/*",
    "tabs",
    "identity",
    "https://connect.facebook.net/en_US/all.js",
    "https://accounts.google.com/o/oauth2/token"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "oauth2": {
    "client_id": "429465245261-dftimuj7obj9pd1rf5aqg117a9gvj041.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "profile",
      "email"
    ]
  },
  "content_security_policy": "script-src 'self' 'sha256-xvxXpKJ4CeBMzoUEQj2uvmLkcnw4pUm0xEUf4iDDqxU=' https://maps.googleapis.com https://apis.google.com/js/platform.js  https://connect.facebook.net https://connect.facebook.net/en_US/sdk.js; object-src 'self'"
}