GamerChange Navi

GamerChange Navi

Listen! Earn more Free Gaming Money with Navi

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GamerChange Navi",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "Listen! Earn more Free Gaming Money with Navi",
  "homepage_url": "https://gamerchange.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "js/jquery/jquery.min.js",
      "js/moment/moment.min.js",
      "js/numeral/numeral.min.js",
      "src/bg/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "GamerChange Navi",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "src/content_script/content_script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "cookies",
    "tabs",
    "storage",
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    "css/gamerchange.css",
    "icons/logo.png",
    "icons/logo_inverse_vertical.png"
  ]
}