BlackLight®

Easily find black-owned businesses!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "BlackLight®",
  "version": "1.0.0",
  "description": "Easily find black-owned businesses!",
  "homepage_url": "https://www.shop4betterworld.org/",
  "permissions": [
    "geolocation",
    "storage",
    "offscreen",
    "webRequest",
    "webNavigation"
  ],
  "host_permissions": [
    "https://www.google.com/*",
    "https://www.bing.com/*"
  ],
  "action": {
    "default_icon": "assets/white_with_purple_bg_rounded_corners.001.png",
    "default_popup": "popup/build/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*",
        "https://www.bing.com/*"
      ],
      "js": [
        "content/build/static/bundle.js"
      ],
      "css": [
        "content/build/static/main.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/blacklight_light_logo.png",
        "/assets/blacklight_txt_logo.png",
        "/assets/blacklight_txt_logo_purple.png",
        "/fonts/EmojiSymbols-Regular.woff",
        "/fonts/google_fonts.woff2",
        "/assets/logo.svg",
        "/content/build/static/main.css"
      ],
      "matches": [
        "https://www.google.com/*",
        "https://www.bing.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}