聖約翰科技大學 線上評量小幫手

聖約翰科技大學 線上評量小幫手

厭煩每次期中考期末考時都需要填線上教學評量的問卷嗎? 只要裝此套件,並登入學生入口網,就能自動幫你填完問卷!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "聖約翰科技大學 線上評量小幫手",
  "version": "1.0",
  "manifest_version": 2,
  "description": "",
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png",
    "default_title": "Tool"
  },
  "content_scripts": [
    {
      "matches": [
        "http://sjusip.sju.edu.tw/sjusip/webPages/PersonalInfo/*",
        "https://sjusip.sju.edu.tw/sjusip/webPages/PersonalInfo/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ]
}