Scratch Search

Scratch Search

Replaces the Scratch Search on the website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Scratch Search",
  "description": "Replaces the Scratch Search on the website",
  "version": "0.0.0.1",
  "icons": {
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://scratch.mit.edu/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "*"
  ],
  "content_security_policy": "script-src 'unsafe-eval' 'self' https://*.google.com/ https://*.googleapis.com/; object-src 'self'",
  "browser_action": {}
}