Enjoyment+

Enjoyment+

Enjoyment+

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/viewPage.js"
      ],
      "matches": [
        "*://www.google.com/search?q=*&enjoyment=1"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "js/jquery.js",
        "js/siteView.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Enjoyment+",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "html/app.html",
  "browser_action": {
    "default_title": "Enjoyment+",
    "default_icon": "icons/icon48.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "manifest_version": 2,
  "name": "Enjoyment+",
  "permissions": [
    "storage",
    "tabs",
    "*://*/*",
    "webRequest",
    "webRequestBlocking",
    "unlimitedStorage"
  ],
  "version": "1.2",
  "web_accessible_resources": [
    "*"
  ]
}