Doc Scratch Readability Improver

Doc Scratch Readability Improver

Makes Doc Scratch's text more easily readable

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Doc Scratch Readability Improver",
  "version": "0.2.0",
  "manifest_version": 2,
  "description": "Makes Doc Scratch's text more easily readable",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.mspaintadventures.com/*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "page_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_title": "Doc Scratch Readability improved"
  },
  "permissions": [
    "*://*.mspaintadventures.net/*",
    "webNavigation",
    "tabs"
  ]
}