Inspect and view changes in Vim for Google Docs™ source codes across current and past versions
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 Google Docs™",
"version": "1.18",
"author": "Quantier, LLC",
"description": "Vim for Google Docs: Supercharge Your Typing With Vim",
"icons": {
"16": "icons/16x16.png",
"32": "icons/32x32.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
},
"content_scripts": [
{
"matches": [
"https://docs.google.com/document/*"
],
"js": [
"dist/ExtPay.js",
"dist/bundle.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"clipboardRead",
"clipboardWrite",
"management"
],
"action": {
"default_popup": "popup.html"
}
}