Highlight & Animate Text

Highlight & Animate Text

Creating animated text highlights on web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Highlight & Animate Text",
  "description": "Creating animated text highlights on web pages.",
  "version": "0.9.0",
  "manifest_version": 3,
  "icons": {
    "16": "img/logo-16.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png",
    "512": "img/logo-512.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "img/logo-48.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content.js-loader.5bd2e108.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "assets/content.4fdf574c.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "img/logo-16.png",
        "img/logo-48.png",
        "img/logo-128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/chunk-439e224e.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "commands": {
    "restart-animation": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Start Animations."
    },
    "clear-highlights": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "Command+Shift+U"
      },
      "description": "Clear Highlights."
    },
    "enable-highlights": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "mac": "Command+Shift+Z"
      },
      "description": "Enable Highlighting & Animating Text."
    }
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}