MSForm Timer

MSForm Timer

This extension will show start and end timer in MS Office forms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MSForm Timer",
  "description": "This extension will show start and end timer in MS Office forms.",
  "version": "0.3",
  "icons": {
    "128": "asset/icon.png"
  },
  "browser_action": {
    "default_icon": "asset/icon.png"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.office.com/Pages/ResponsePage.aspx?*",
        "*://*.microsoft.com/Pages/ResponsePage.aspx?*"
      ],
      "js": [
        "js/jquery.js",
        "js/script.js"
      ],
      "css": [
        "css/script.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://*.office.com/*; object-src 'self'"
}