Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Block Forms",
"version": "0.0.32",
"author": "Clay Smith",
"short_name": "Block Forms",
"default_locale": "en",
"description": "Block consumer forms from your domain.",
"icons": {
"19": "images\/19.png",
"32": "images\/32.png",
"36": "images\/36.png",
"38": "images\/38.png",
"64": "images\/64.png",
"128": "images\/128.png"
},
"permissions": [],
"host_permissions": [
"*:\/\/docs.google.com\/forms\/*"
],
"storage": {
"managed_schema": "schema.json"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"*:\/\/docs.google.com\/forms\/*"
],
"exclude_globs": [
"*startquiz*"
],
"js": [
"contentscript.js"
]
}
]
}