Let's Write - Distraction Free Google Docs

Let's Write - Distraction Free Google Docs

Tiny Tool for Distraction Free Google Docs Environment

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Let's Write - Distraction Free Google Docs",
  "description": "Tiny Tool for Distraction Free Google Docs Environment",
  "version": "0.4",
  "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": [
      "bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "jquery.js",
        "jquery.min.js",
        "df.js"
      ]
    }
  ]
}