Leftside Back

Leftside Back

Allows you to navigate back by just hitting the mouse on the left or right side of your 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": "__MSG_extension_name__",
  "short_name": "__MSG_extension_name__",
  "description": "__MSG_extension_desc__",
  "default_locale": "en",
  "version": "2.0.0",
  "version_name": "2.0.0",
  "minimum_chrome_version": "109",
  "homepage_url": "https://extensions.redeviation.com/",
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/extension.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": "img/icon/128x128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_ui": {
    "page": "html/settings.html",
    "open_in_tab": true
  },
  "icons": {
    "48": "img/icon/48x48.png",
    "128": "img/icon/128x128.png",
    "256": "img/icon/256x256.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "contextMenus",
    "storage"
  ]
}