Simple Gmail Screen

Simple Gmail Screen

Simplify Gmail screen, make the sidebar and top bar auto-hide.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Simple Gmail Screen",
  "short_name": "SGScreen",
  "description": "__MSG_extDescription__",
  "version": "0.11.0",
  "default_locale": "en",
  "icons": {
    "16": "image/icon.16.png",
    "48": "image/icon.48.png",
    "128": "image/icon.128.png"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "lib/jquery-3.1.0.min.js",
        "css/style.css",
        "css/bulma.min.css"
      ],
      "matches": [],
      "extension_ids": []
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "lib/jquery-3.1.0.min.js",
        "utils.js",
        "content.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "action": {
    "default_icon": "image/icon.128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "@simple-gmail-screen",
      "strict_min_version": "53.0"
    }
  }
}