Brickseek

Brickseek

Adds 'Open in Brickseek' button to Walmart product pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Brickseek",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Adds 'Open in Brickseek' button to Walmart product pages",
  "homepage_url": "https://github.com/andrew-ma/brickseek",
  "minimum_chrome_version": "74",
  "icons": {
    "48": "/icon.png",
    "96": "/[email protected]"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://www.walmart.com/ip/*"
      ],
      "js": [
        "/brickseek.js"
      ],
      "css": [
        "/brickseek.css"
      ]
    }
  ]
}