Instant Developer Cloud Screenshot Extension

Instant Developer Cloud Screenshot Extension

Take screenshots from Instant Developer Cloud applications when sending feedback.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Instant Developer Cloud Screenshot Extension",
  "version": "2.1",
  "description": "Take screenshots from Instant Developer Cloud applications when sending feedback.",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost:8081/*",
        "https://*.instantdevelopercloud.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Screenshot"
  },
  "permissions": [
    "<all_urls>"
  ],
  "host_permissions": [
    "http://localhost:8081/*",
    "https://*.instantdevelopercloud.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:8081/*",
      "https://*.instantdevelopercloud.com/*"
    ]
  },
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "manifest_version": 2
}