Font Size Changer for AppsScript

Font Size Changer for AppsScript

This extension change the font size of the google apps script editor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Font Size Changer for AppsScript",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "This extension change the font size of the google apps script editor.",
  "content_scripts": [
    {
      "matches": [
        "https://script.google.com/*"
      ],
      "js": [
        "/node_modules/jquery/dist/jquery.min.js",
        "script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ajax.googleapis.com/ ; object-src 'self'"
}