Quick Look

Quick Look

Look up definition for anything you found in the browser quickly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Quick Look",
  "short_name": "quick-look",
  "author": "Sutanto",
  "version": "21.4.21",
  "manifest_version": 2,
  "default_locale": "en",
  "minimum_chrome_version": "49",
  "description": "Look up definition for anything you found in the browser quickly",
  "homepage_url": "https://github.com/muaz-khan/Chrome-Extensions/tree/master/screen-recording",
  "background": {
    "scripts": [
      "background/background.contentScript.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background/background.contentScript.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "images/main-icon.png",
    "default_title": "Quick Look by Brader",
    "default_popup": "index.html#/popup"
  },
  "icons": {
    "16": "images/main-icon.png",
    "22": "images/main-icon.png",
    "32": "images/main-icon.png",
    "48": "images/main-icon.png",
    "128": "images/main-icon.png"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self'  https://ssl.google-analytics.com 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "images/main-icon.png",
    "ga.js",
    "index.html"
  ],
  "options_ui": {
    "page": "index.html#/app/options",
    "chrome_style": false,
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}