in5 Animated GIF Maker

in5 Animated GIF Maker

The in5 Animated GIF Maker lets you create animated GIFs (and videos) using Adobe InDesign. Take advantage of InDesign's…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "in5 Animated GIF Maker",
  "version": "3.0.2",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "activeTab",
    "tabCapture",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/logo16.png",
    "32": "img/logo32.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "lib/trigger.js",
        "lib/listeners.js",
        "lib/scaleMode.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+I",
        "mac": "Command+Shift+I"
      }
    }
  }
}