Youtube Navigation Shortcuts

Youtube Navigation Shortcuts

This extension lets you use arrow/WASD keys to navigate through youtube search list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Navigation Shortcuts",
  "description": "This extension lets you use arrow/WASD keys to navigate through youtube search list.",
  "version": "1.3",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "listener.js"
      ]
    }
  ],
  "icons": {
    "500": "icon.png"
  },
  "author": "Ashok Pahadi",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Press Ctrl(Win)/Command(Mac)+Arrow Keys or WASD to navigate through videos"
  }
}