Expat Home

Expat Home

A home for Expat Society members - inside Google Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Expat Home",
  "description": "A home for Expat Society members - inside Google Chrome.",
  "version": "1.0.2",
  "background": {
    "page": "html/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.google.com/*"
      ],
      "js": [
        "js/jquery-3.1.1.min.js",
        "js/google.com.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.theexpatsociety.com/*"
      ],
      "js": [
        "js/jquery-3.1.1.min.js",
        "js/theexpatsociety.com.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "chrome_url_overrides": {
    "newtab": "html/newtab.html"
  },
  "permissions": [
    "tabs",
    "https://www.google.com/*",
    "*://*.theexpatsociety.com/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_title": "",
    "default_icon": "images/logo128.png"
  },
  "icons": {
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "web_accessible_resources": [
    "images/suersix.png"
  ],
  "manifest_version": 2
}