manifest.json 659 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "manifest_version": 2,
  3. "name": "Veil",
  4. "version": "1.0",
  5. "description": "Blurs images on inappropriate websites",
  6. "content_scripts": [
  7. {
  8. "matches": ["*://*/*"],
  9. "js": ["index.js"],
  10. "run_at": "document_start"
  11. },
  12. {
  13. "matches": ["*://*/*"],
  14. "js": ["index.js"]
  15. }
  16. ],
  17. "background": {
  18. "scripts": ["background.js"]
  19. },
  20. "browser_action": {
  21. "default_icon": "grid-world.svg",
  22. "default_title": "Veil",
  23. "default_popup": "popup.html"
  24. },
  25. "permissions": [
  26. "storage",
  27. "http://de1.hashbang.sh/",
  28. "activeTab",
  29. "menus"
  30. ]
  31. }