Google Forms Toolbox

Google Forms Toolbox

Enhance your Google Forms experience with added functionality: answer templates, the ability to reverse answer options

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "version": "1.0.0",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "assets/img/16x16.png",
    "32": "assets/img/32x32.png",
    "48": "assets/img/48x48.png",
    "128": "assets/img/128x128.png"
  },
  "action": {
    "default_icon": "assets/img/128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/forms/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ]
}