Auto Survey by KFUEIT Programmers

Auto Survey by KFUEIT Programmers

Automatically fills the KFUEIT university Surveys in no time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Survey by KFUEIT Programmers",
  "version": "3.0",
  "description": "Automatically fills the KFUEIT university Surveys in no time",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://survey.kfueit.edu.pk/limesurvey/index.php/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "AutoSurvey.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery-3.4.1.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/img16.png",
      "32": "images/img32.png",
      "48": "images/img48.png",
      "128": "images/img128.png"
    }
  },
  "icons": {
    "16": "images/img16.png",
    "32": "images/img32.png",
    "48": "images/img48.png",
    "128": "images/img128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}