Fynd Now

Fynd Now

Get inspired on the web and shop the look. Select any image while browsing and search similar styles from the entire Fynd catalogue.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Anirudha Vishvakarma",
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/fyndnow_16.png",
      "48": "icons/fyndnow_48.png",
      "128": "icons/fyndnow_128.png"
    },
    "default_popup": "popup/index.html"
  },
  "description": "Get inspired on the web and shop the look. Select any image while browsing and search similar styles from the entire Fynd catalogue.",
  "homepage_url": "https://now.fynd.com",
  "icons": {
    "16": "icons/fyndnow_16.png",
    "48": "icons/fyndnow_48.png",
    "128": "icons/fyndnow_128.png"
  },
  "manifest_version": 2,
  "name": "Fynd Now",
  "options_ui": {
    "chrome_style": true,
    "page": "options/index.html"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "short_name": "fyndnow",
  "version": "1.0.2",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "js/styleUtils.js",
        "js/templateUtils.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "assets/no-result-found.png",
    "assets/fynd-now-logo.png",
    "assets/fynd-now.png"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}