Profile Verifier

Profile Verifier

Helps you not fall in trouble on the Internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "name": "Analisar o perfil selecionado",
    "icons": [
      "icon.png",
      "icon2.png"
    ],
    "default_icon": "icon2.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "permissions": [
    "tabs",
    "https://www.google.com/*"
  ],
  "content_security_policy": "script-src 'self' https://www.google.com/searchbyimage chrome-extension://; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "matches": [
        "https://www.facebook.com/*",
        "http://www.facebook.com/*"
      ]
    },
    {
      "matches": [
        "https://www.parperfeito.com.br/*",
        "http://www.parperfeito.com.br/*"
      ],
      "js": [
        "jquery.min.js",
        "contentPP.js"
      ]
    }
  ],
  "manifest_version": 2
}