Google Keep - Full Screen Edit

Google Keep - Full Screen Edit

Makes note editing take up the full browser window

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Keep - Full Screen Edit",
  "short_name": "Google Keep Full Screen",
  "description": "Makes note editing take up the full browser window",
  "homepage_url": "https://github.com/chrisputnam9/chrome-google-keep-full-screen",
  "version": "1.3.1",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "options_page": "src/options/index.html",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://keep.google.com/*"
  ],
  "background": {
    "service_worker": "src/service_worker.js"
  },
  "commands": {
    "toggle-fullscreen": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      },
      "description": "Toggle full screen editing"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://keep.google.com/*"
      ],
      "css": [
        "src/content/styles.css"
      ],
      "js": [
        "src/content/script.js",
        "src/shared/options_handler.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 3
}