Black Apps Script

Black Apps Script

This extension brings new functionality to the Google Apps Script Monaco Editor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Black Apps Script",
  "description": "This extension brings new functionality to the Google Apps Script Monaco Editor",
  "version": "1.0.16",
  "icons": {
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://script.google.com/*"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "embed.js",
        "textmate/*"
      ],
      "matches": [
        "https://script.google.com/*"
      ],
      "extension_ids": []
    }
  ],
  "host_permissions": [
    "https://script.google.com/*"
  ],
  "homepage_url": "https://www.swroot.com/black-script",
  "action": {
    "default_title": "Black Apps Script options",
    "default_icon": "128.png",
    "default_popup": "index.html"
  },
  "sandbox": {
    "pages": [
      "textmate/index.html"
    ]
  },
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self'; script-src-elem 'self' data: blob:; worker-src 'self' data: blob:; object-src 'self'"
  },
  "manifest_version": 3
}