Distraction Free Mode for Google Docs

Distraction Free Mode for Google Docs

The distraction free mode (▣) for Google Docs hides all controls and buttons and lets you focus on the writing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Distraction Free Mode — Google Docs & Slides",
  "description": "The distraction free mode (▣) for Google Docs and Google Slides hides all controls and buttons and lets you focus on creation.",
  "homepage_url": "http://flowapps.co/distractionfree",
  "author": "Flowapps.co",
  "version": "2.1.0",
  "icons": {
    "16": "img/icon-16.png",
    "19": "img/icon-19.png",
    "38": "img/icon-38.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png",
    "256": "img/icon-256.png"
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "firefox-bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "firefox-df.js"
      ]
    }
  ]
}