Digiteka Log

Digiteka Log

Cette extension a pour but d'afficher les différents logs du player Digiteka et de pratiquer différents tests

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Digiteka Log",
  "description": "Cette extension a pour but d'afficher les différents logs du player Digiteka et de pratiquer différents tests",
  "version": "1.0",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.ultimedia.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "devtools_page": "devtools.html",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "permissions": [
    "background",
    "cookies"
  ],
  "host_permissions": [
    "https://www.ultimedia.com/*",
    "*://*/*"
  ]
}