Answers HQ Carbonic Edition 2

Answers HQ Carbonic Edition 2

This extension changes Answers HQ to be darker and more desktop, power user and eye friendly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Answers HQ Carbonic Edition 2",
  "short_name": "AHQ:CE2",
  "description": "This extension changes Answers HQ to be darker and more desktop, power user and eye friendly.",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "version": "2.4.0",
  "homepage_url": "http://answers.ea.com/",
  "permissions": [
    "storage",
    "*://answers.ea.com/*",
    "webNavigation"
  ],
  "browser_action": {
    "default_icon": "icon16.png",
    "default_title": "Answers HQ Carbonic Edition 2",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://answers.ea.com/*"
      ],
      "js": [
        "carbonicEditionScript.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "background": {
    "page": "popup.html"
  },
  "web_accessible_resources": [
    "carbonicEditionStyle.css",
    "carbonicEditionStyleBright.css"
  ]
}