9GAG Enhancer

9GAG Enhancer

The easiest way to have even more fun on 9GAG!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "9GAG Enhancer",
  "version": "1.0",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "*://9gag.com/*",
    "*://*.9cache.com/*"
  ],
  "incognito": "spanning",
  "content_scripts": [
    {
      "js": [
        "js/jquery-plugins/jquery.min.js",
        "js/content-scripts/9gag.min.js"
      ],
      "css": [
        "css/9gag.css"
      ],
      "matches": [
        "*://9gag.com/*"
      ],
      "exclude_matches": [
        "*://9gag.com/tv*"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "page": "html/background.html"
  },
  "options_page": "html/options.html",
  "icons": {
    "128": "graphic/logo/logo-128.png"
  },
  "web_accessible_resources": [
    "html/options.html"
  ]
}