Vim-For-Docs

An implementation of Vim motions for Google Docs
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Vim-For-Docs",
  "description": "An implementation of Vim motions for Google Docs",
  "version": "1.6",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "content.js",
        "line-numbers.js"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "page_script.js"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    }
  ]
}