Portail ESVD Extension

Portail ESVD Extension

Cette extension permet à tout utilisateur de personnaliser le Portail ESVD

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Portail ESVD Extension",
  "short_name": "ESVD Plus",
  "description": "Cette extension permet à tout utilisateur de personnaliser le Portail ESVD",
  "version": "3.6",
  "version_name": "3.6",
  "manifest_version": 3,
  "icons": {
    "128": "./img/icon-128x128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "linux": "Ctrl+Shift+E",
        "windows": "Ctrl+Shift+E",
        "mac": "Alt+Shift+E"
      }
    },
    "duplicate_tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+D",
        "linux": "Ctrl+Shift+D",
        "windows": "Ctrl+Shift+D",
        "mac": "Alt+Shift+D"
      },
      "description": "Dupliquer l'onglet actif",
      "shortcut": "Ctrl+D"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://portail.verbedivin.com/*"
      ],
      "js": [
        "./backdrop/content.js"
      ],
      "css": [
        "./backdrop/Injectedcss.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Cliquez pour ouvrir le menu de l'extension !",
    "default_popup": "popup.html",
    "default_icons": {
      "16": "./img/icon-16x16.png",
      "32": "./img/icon-32x32.png",
      "48": "./img/icon-48x48.png",
      "128": "./img/icon-128x128.png"
    }
  },
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "unlimitedStorage",
    "bookmarks"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/CSS/*"
      ],
      "matches": [
        "https://portail.verbedivin.com/*"
      ]
    }
  ]
}