Pocket Vim

Pocket Vim

Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pocket Vim",
  "version": "0.1.2",
  "manifest_version": 2,
  "description": "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.",
  "default_locale": "en",
  "icons": {
    "64": "images/icon.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/page.js"
      ]
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "background",
    "tabs"
  ],
  "web_accessible_resources": [
    "scripts/*",
    "html/*",
    "css/*",
    "images/*"
  ]
}