BURLIE - Bynder URL Initiator Extension

BURLIE - Bynder URL Initiator Extension

Generate sharable URLs for your Bynder DAM in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BURLIE - Bynder URL Initiator Extension",
  "version": "0.5.2",
  "description": "Generate sharable URLs for your Bynder DAM in one click.",
  "author": "[email protected]",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "images/icon-128.png",
    "default_title": "BURLIE"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/media*",
        "*://*/news*"
      ],
      "js": [
        "content-script.min.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.min.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*/media*",
    "*://*/news*"
  ]
}