{
  "manifest_version": 2,
  "name": "Meow, The Cat Pet",
  "version": "1.9.8",
  "description": "A sweet game about Meow, A virtual Cat pet that walks on your screen while you're browsing the web.",
  "background": {
    "persistent": true,
    "page": "background/background_lit.html"
  },
  "permissions": ["alarms","messagesModify","tabs", "<all_urls>", "webNavigation", "notifications","browsingData","bookmarks","contextMenus","storage"],
  "browser_action": {
    "default_title": "Cat Pet",
    "default_popup": "/html/popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "1gibersoncur@gmail.com"
    }
  },
  "web_accessible_resources": [
    "images/*.png",
    "js/*.png",
    "images/*.jpg",
    "images/*.svg",
    "js/*.json",
    "js/*.atlas",
    "sound/*.mp3"
  ],  
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "exclude_globs": ["*://*.meowthecatpet.com/playground*", "*://*.meowplayground.com/game*", "*://*.meowplayground.com:8043/game*","*://localhost*"],
      "css": ["/css/dist/catpet.css"],
      "js": [
        "/js/dist/browserLoader.js",
        "/js/dist/runCat.js"
      ]
    },
    {
      "matches": ["https://www.meowthecatpet.com/playground*", "https://www.meowplayground.com/game*", "http://localhost:8008/*"],
      "js": ["js/domain-sync.js"]
    }   
  ],  
  "icons": { "16": "16.png",
           "48": "48.png",
          "128": "128.png" 
  },
    "omnibox": { "keyword" : "cat" }
}