Keyboard Surfing

Keyboard Surfing

Web browsing with keyboard, no need to use a mouse. Smart cursor-based keyboard navigation and control. Go mouseless today!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Keyboard Surfing",
  "version": "1.3.23",
  "author": "Somnia",
  "description": "Web browsing with keyboard, no need to use a mouse. Smart cursor-based keyboard navigation and control. Go mouseless today!",
  "icons": {
    "32": "KSicon-20-032-1.png",
    "48": "KSicon-20-048-1.png",
    "64": "KSicon-20-064-1.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "chromeCsMerged.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": {
      "32": "KSicon-20-032-1.png",
      "48": "KSicon-20-048-1.png",
      "64": "KSicon-20-064-1.png"
    },
    "default_title": "Keyboard Surfing"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}