ESSR - Student website security extension

ESSR - Student website security extension

This extension will ensure you will not copy data that you are not authorized to duplicate.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Francois Dupuis",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jquery.min.js",
        "contextblocker.js"
      ],
      "match_about_blank": true,
      "matches": [
        "*://*.essr.ch/*"
      ]
    }
  ],
  "description": "This extension will ensure you will not copy data that you are not authorized to duplicate.",
  "externally_connectable": {
    "matches": [
      "https://etu.essr.ch/*"
    ]
  },
  "homepage_url": "https://etu.essr.ch/",
  "icons": {
    "16": "essr16.png",
    "32": "essr32.png",
    "48": "essr48.png",
    "128": "essr128.png"
  },
  "incognito": "split",
  "manifest_version": 2,
  "name": "ESSR - Student website security extension",
  "permissions": [
    "clipboardWrite",
    "*://*.essr.ch/*"
  ],
  "short_name": "ESSR",
  "version": "1.13",
  "web_accessible_resources": [
    "manifest.json"
  ]
}