Shortleaf

Shortleaf

Custom keyboard shortcuts for Overleaf.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shortleaf",
  "description": "Custom keyboard shortcuts for Overleaf.",
  "version": "1.0.2",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.overleaf.com/project/*"
      ],
      "js": [
        "content-script.js"
      ]
    },
    {
      "matches": [
        "https://*.overleaf.com/project/*"
      ],
      "js": [
        "shortleaf.js"
      ],
      "world": "MAIN"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "shortleaf.js",
        "popup.js",
        "shortleaf_pages.js",
        "shortleaf_pages.css",
        "default_config.json",
        "*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html"
  }
}