SKIM Survey Assistant

SKIM Survey Assistant

A chrome extension to help with (re)filling questions with answers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SKIM Survey Assistant",
  "short_name": "SSA",
  "version": "1.1",
  "description": "A chrome extension to help with (re)filling questions with answers",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "24": "icons/icon48.png",
      "32": "icons/icon128.png"
    },
    "default_title": "Survey Assistent"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "declarativeContent",
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "global.js",
        "onPageLoad.js"
      ]
    }
  ],
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+L",
        "windows": "Ctrl+L",
        "mac": "Alt+L"
      }
    }
  }
}