manifest.json 321 B

123456789101112131415161718
  1. // manifest.json
  2. {
  3. "manifest_version": 2,
  4. "name": "2020 Census Kiosk",
  5. "version": "1.0",
  6. "description": "Only allows access to http://2020Census.gov.",
  7. "background": {
  8. "scripts": ["background.js"]
  9. },
  10. "permissions": [
  11. "<all_urls>",
  12. "webRequest",
  13. "webRequestBlocking"
  14. ]
  15. }