{
  "manifest_version": 2,

  "name": "Page Analyzer (powered by Vorlon.js)",
  "short_name": "Page Analyzer",
  "description": "This extension helps you improve your website. Works with Edge, Firefox and Chrome",
  "version": "1.0",
  
  "icons": { "16": "icons/PageAnalyzer-Active.16.png",
           "48": "icons/PageAnalyzer-Active.48.png",
          "128": "icons/PageAnalyzer-Active.128.png" },

  "browser_action": {
      "default_icon": {                    
            "19": "icons/PageAnalyzer-Active.19.png",           
            "38": "icons/PageAnalyzer-Active.38.png"            
          },
       "title": "Page Analyzer (powered by Vorlon.js)",
       "icon": "icons/PageAnalyzer-Active.19.png"
  },
  "background": {
      "persistent": true,
      "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["vorlonExtension.runtime.js"],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "web_accessible_resources": [
     "*.js"
  ],
  "applications": {
    "gecko": {
        "id": "extension@vorlonjs.io"
    }
  }
}