Googly Eyes on Everything

Googly Eyes on Everything

Lets you put googly eyes on anything and everything!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Googly Eyes on Everything",
  "version": "0.4",
  "description": "Lets you put googly eyes on anything and everything!",
  "icons": {
    "128": "favicon.png"
  },
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.3.1.js",
        "jquery-ui.js",
        "googlyEyes.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "favicon.png",
    "default_popup": ""
  }
}