9GAG Toolkit

9GAG Toolkit

Offers advanced navigation options and improvements for the 9gag website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "9GAG Toolkit",
  "version": "0.6.2",
  "manifest_version": 2,
  "description": "Offers advanced navigation options and improvements for the 9gag website.",
  "browser_action": {
    "default_icon": "/assets/img/icon.png",
    "default_popup": "page.html"
  },
  "icons": {
    "16": "/assets/img/icons/icon-16.png",
    "48": "/assets/img/icons/icon-48.png",
    "128": "/assets/img/icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://9gag.com/*",
        "*://*.9gag.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "/assets/js/jquery.min.js",
        "/assets/js/custom9gag.js"
      ],
      "css": [
        "/assets/css/custom9gag.css"
      ]
    }
  ],
  "permissions": [
    "http://fonts.googleapis.com/",
    "https://fonts.googleapis.com/"
  ]
}