manifest.json 525 B

1234567891011121314151617181920212223242526
  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. "chrome_url_overrides": {
  15. "newtab": "newtab.html"
  16. },
  17. "permissions": [
  18. "webRequest",
  19. "webRequestBlocking",
  20. "https://*/*",
  21. "http://*/*"
  22. ]
  23. }