Vimmatic

Vimmatic

Vimmatic enables Vim-like key binds in your web browser for easier and faster navigation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Vimmatic",
  "description": "Vimmatic enables Vim-like key binds in your web browser for easier and faster navigation.",
  "icons": {
    "48": "resources/icon_48x48.png",
    "96": "resources/icon_96x96.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/content.js"
      ],
      "run_at": "document_start",
      "match_about_blank": true
    }
  ],
  "background": {
    "service_worker": "lib/background.js"
  },
  "permissions": [
    "history",
    "sessions",
    "storage",
    "tabs",
    "notifications",
    "bookmarks"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "lib/console.html",
        "lib/console.css",
        "lib/console.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_ui": {
    "page": "lib/options.html"
  },
  "action": {
    "default_icon": {
      "32": "resources/enabled_32x32.png"
    },
    "default_title": "Vimmatic"
  },
  "version": "0.7.1"
}