manifest.json 458 B

123456789101112131415161718192021
  1. {
  2. "name": "HSTS Everywhere",
  3. "version": "0.4.0.1",
  4. "description": "Forces all sites to use HSTS, forces https(but can allow http if set)",
  5. "background": {
  6. "scripts": ["background.js"]
  7. },
  8. "icons": {
  9. "128": "icon.png"
  10. },
  11. "manifest_version": 2,
  12. "homepage_url": "https://github.com/respeccing/hsts-everywhere-chrome",
  13. "options_page": "options.html",
  14. "permissions": [
  15. "webRequest",
  16. "webRequestBlocking",
  17. "https://*/*",
  18. "http://*/*"
  19. ]
  20. }