Video Reviews For Buying Online

Video Reviews For Buying Online

While checking an online store this plugin connects you with relevant review videos that will help you make a good decision

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Reviews For Buying Online",
  "version": "1.1.0",
  "description": "While checking an online store this plugin connects you with relevant review videos that will help you make a good decision",
  "manifest_version": 2,
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://*.amazon.*/*",
        "*://*.thomann.*/*",
        "*://*.musicstore.*/*",
        "*://*.ebay.*/*",
        "*://*.etsy.*/*",
        "*://*.royalqueenseeds.*/*",
        "*://*.alibaba.*/*",
        "*://*.bestbuy.*/*"
      ],
      "js": [
        "extensions/content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "web_accessible_resources": [
    "icon.png",
    "youtube.png"
  ],
  "icons": {
    "32": "icon.png",
    "48": "icon_48.png"
  }
}