Refined C3

Refined C3

Various tweaks and improvements for the Construct 3 Editor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Refined C3",
  "homepage_url": "http://localhost:8080/",
  "description": "Various tweaks and improvements for the Construct 3 Editor",
  "default_locale": "en",
  "permissions": [
    "*://editor.construct.net/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    "messaging.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://editor.construct.net/*"
      ],
      "js": [
        "js/quickswitch.js",
        "js/headway.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://preview.construct.net/debug.html*"
      ],
      "js": [
        "js/debug-search.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "version": "0.2.6",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}