Right Click for Whole Foods & Prime Now

Right Click for Whole Foods & Prime Now

Select/Highlight any product name on any website and right click to compare prices or search for that product at Whole Foods.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Right Click for Whole Foods & Prime Now",
  "description": "Select/Highlight any product name on any website and right click to compare prices or search for that product at Whole Foods.",
  "version": "1.5",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icons/icon16.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/eventPage.js"
    ],
    "persistent": true
  },
  "omnibox": {
    "keyword": "wholefoods"
  },
  "web_accessible_resources": [
    "content.js",
    "content.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "all_frames": true
    }
  ],
  "options_page": "html/options.html",
  "permissions": [
    "storage",
    "contextMenus",
    "https://*.amazon.com/*"
  ]
}