Google Search Boost

Google Search Boost

vim-like keyboard shortcuts for search page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Search Boost",
  "version": "0.1.3",
  "description": "vim-like keyboard shortcuts for search page",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_title": "preference",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/search?*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "style-main.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "arrow.png"
      ],
      "matches": [
        "https://www.google.com/*"
      ]
    }
  ]
}