Catch Ups Survey Assistant

Catch Ups Survey Assistant

Extension to auto-fill repetitive catch ups survey data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Catch Ups Survey Assistant",
  "description": "Extension to auto-fill repetitive catch ups survey data",
  "version": "4.0",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://baseline.campuslabs.com/*"
      ],
      "js": [
        "js/main.js"
      ],
      "css": [
        "css/main.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ]
}