LazyEye

LazyEye

Search pages browsed by the user for interesting artifacts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LazyEye",
  "version": "1.1.0",
  "description": "Search pages browsed by the user for interesting artifacts",
  "icons": {
    "16": "ico/16.png",
    "48": "ico/48.png",
    "128": "ico/128.png"
  },
  "browser_action": {
    "default_title": "LazyEye",
    "default_icon": "ico/16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "global.js",
        "jquery.js",
        "init.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "index.js"
    ]
  },
  "options_page": "options.html"
}