Quick Reference

Quick Reference

Quick Reference displays information on the text selected. It displays details about movies, tv series, books and people.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Quick Reference",
  "version": "1.0.0.4",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "tabs",
    "http://*/",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "content_script.min.js"
      ],
      "css": [
        "bootstrap.min.css",
        "jquery-ui.css",
        "custom.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "empty-star.png",
    "half-filled-star.png",
    "filled-star.png"
  ]
}