oak

oak

Find the Black-owned hair products that work best for you, no matter where you shop.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "oak",
  "author": "Oak Systems",
  "version": "1.4",
  "description": "Find the Black-owned hair products that work best for you, no matter where you shop.",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "webNavigation"
  ],
  "host_permissions": [
    "https://*.myoaksystem.com/",
    "http://*.myoaksystem.com/"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.target.com/p/*",
        "https://*.target.com/p/*"
      ],
      "js": [
        "static/js/targetProduct.js"
      ]
    },
    {
      "matches": [
        "http://*.target.com/s*",
        "https://*.target.com/s*"
      ],
      "js": [
        "static/js/targetProductList.js"
      ]
    },
    {
      "matches": [
        "http://*.amazon.com/s*",
        "https://*.amazon.com/s*"
      ],
      "js": [
        "static/js/amazonProductList.js"
      ]
    },
    {
      "matches": [
        "http://*.amazon.com/*",
        "https://*.amazon.com/*"
      ],
      "exclude_matches": [
        "http://*.amazon.com/s*",
        "https://*.amazon.com/s*"
      ],
      "js": [
        "static/js/amazonProduct.js"
      ]
    },
    {
      "matches": [
        "http://*.walmart.com/search/?query=*",
        "https://*.walmart.com/search/?query=*"
      ],
      "js": [
        "static/js/walmartProductList.js"
      ]
    },
    {
      "matches": [
        "http://*.walmart.com/ip/*",
        "https://*.walmart.com/ip/*"
      ],
      "js": [
        "static/js/walmartProduct.js"
      ]
    }
  ],
  "icons": {
    "16": "images/favicon-16.png",
    "32": "images/favicon-32.png",
    "128": "images/favicon-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "oak",
    "default_icon": {
      "16": "images/favicon-16.png",
      "32": "images/favicon-32.png",
      "128": "images/favicon-128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}