Mobile Number Tracker

Mobile Number Tracker

Mobile Number Tracker: Links all Phone number and Emails to MNT search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "128": "images/new-icon.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "scripts/jquery.js",
        "scripts/contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "128": "images/new-icon.png"
    },
    "default_title": "Mobile Number Tracker",
    "default_popup": "popup.html"
  }
}