Edge Operation

Edge Operation

This is an extension that performs history and scrolling operations at the edge of the screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Edge Operation",
  "version": "2.0.0.2",
  "version_name": "0.0.0.2",
  "description": "This is an extension that performs history and scrolling operations at the edge of the screen.",
  "icons": {
    "128": "/icon/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/jquery/jquery-3.7.0.min.js",
        "/js/edgeoperation.js"
      ],
      "css": [
        "/css/edgeoperation.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}