Full Screen Edit for Google Tasks™

Full Screen Edit for Google Tasks™

Chrome extension enabling fullscreen mode for Google Tasks sidebar tool.

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_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "3.0.3",
  "icons": {
    "32": "/icons/icon32.png",
    "128": "/icons/icon128.png"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_title": "__MSG_appName__",
    "default_icon": "/icons/icon32.png",
    "default_popup": "/ui/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://tasks.google.com/embed/*"
      ],
      "all_frames": true,
      "js": [
        "/js/content.js"
      ]
    }
  ],
  "homepage_url": "https://full-screen-edit-google-tasks.dllplayer.com/"
}