9GAG Mini

9GAG Mini

Have a good laugh, even when you're not on 9GAG.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "9GAG Mini",
  "version": "0.76",
  "manifest_version": 2,
  "description": "Have a good laugh, even when you're not on 9GAG.",
  "icons": {
    "48": "img/logo_48x48.png",
    "128": "img/logo_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://9gag.com/*",
        "*://*.9gag.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/is-install.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://apis.google.com https://connect.facebook.net https://www.facebook.com; object-src 'self'",
  "permissions": [
    "tabs",
    "notifications",
    "*://9gag.com/*",
    "*://*.9gag.com/*"
  ]
}