App Script Editor PRO

App Script Editor PRO

The best chrome extension for Google Apps Script developers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "App Script Editor PRO",
  "version": "1.0",
  "description": "The best chrome extension for Google Apps Script developers",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "./public/popup.html",
    "default_icon": {
      "16": "./public/icons/GASE_ICON_16002.png",
      "48": "./public/icons/GASE_ICON_48002.png",
      "128": "./public/icons/GASE_ICON_128002.png"
    }
  },
  "icons": {
    "16": "./public/icons/GASE_ICON_16002.png",
    "48": "./public/icons/GASE_ICON_48002.png",
    "128": "./public/icons/GASE_ICON_128002.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://script.google.com/*/projects/*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "./public/css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "monaco.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}