Console

Console

You can type the command to help you do something.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Console",
  "description": "You can type the command to help you do something.",
  "manifest_version": 3,
  "version": "1.0.2.0",
  "icons": {
    "16": "static/image/favicon/16.png",
    "32": "static/image/favicon/32.png",
    "48": "static/image/favicon/48.png",
    "128": "static/image/favicon/128.png"
  },
  "default_locale": "en",
  "action": {
    "default_popup": "templates/popup.html"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "permissions": [
    "tabs",
    "bookmarks"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/src/scripting/video-controls.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "description": "This hotkey can quickly open the extension. (same as you click extension by mouse.)",
      "suggested_key": {
        "default": "Alt+1"
      }
    }
  }
}