Google Keep - Full Screen Edit

Google Keep - Full Screen Edit

Makes note editing take up the full browser window Allows Google Keep editing to use the full browser window. Allows toggling full screen on and off.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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.2.3",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://keep.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://keep.google.com/*"
      ],
      "css": [
        "src/styles.css"
      ],
      "js": [
        "src/script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{587c2160-ca1c-4546-9bee-853e2b44c13d}"
    }
  }
}