Boloo Buddy

Boloo Buddy

De gemakkelijkste manier om product toe te voegen aan de Boloo product tracker

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Boloo Buddy",
  "description": "De gemakkelijkste manier om product toe te voegen aan de Boloo product tracker",
  "version": "1.10.3",
  "homepage_url": "https://boloo.co/",
  "author": "Boloo",
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://*.boloo.co/*",
    "https://*.bol.com/*"
  ],
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "57": "images/icon_57.png",
    "72": "images/icon_72.png",
    "114": "images/icon_114.png",
    "128": "images/icon_128.png",
    "144": "images/icon_144.png"
  },
  "externally_connectable": {
    "matches": [
      "https://app.boloo.co/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bol.com/*/p/*"
      ],
      "js": [
        "productPage.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.bol.com/*/t/*",
        "https://*.bol.com/*/l/*",
        "https://*.bol.com/*/ra/*",
        "https://*.bol.com/*/s/*",
        "https://*.bol.com/*/w/*"
      ],
      "js": [
        "searchPage.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.bol.com/sdd/cases/*"
      ],
      "js": [
        "customerSupportPage.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}