piQit Image Search

piQit Image Search

This extension finds similar products to the image which is clicked using the piqit icon

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "piQit Image Search",
  "description": "This extension finds similar products to the image which is clicked using the piqit icon",
  "version": "0.0.0.5",
  "browser_action": {
    "default_icon": "static/images/piqto.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "static/js/jquery.min.js",
      "static/js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "static/css/style.css"
      ],
      "js": [
        "static/js/jquery.min.js",
        "static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "static/images/piqto.png",
    "static/css/bootstrap.min.css"
  ]
}