Survey helper - go forward!

Survey helper - go forward!

Emulates a click on the next button in a survey. Default shortcut ALT-X (can be changed at Chrome extensions bottom right)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Survey helper - go forward!",
  "description": "Emulates a click on the next button in a survey. Default shortcut ALT-X (can be changed at Chrome extensions bottom right)",
  "version": "0.2",
  "icons": {
    "16": "icon-next-16.png",
    "128": "icon-next-128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Go forward"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+X"
      }
    }
  },
  "manifest_version": 2
}