Sample Chrome Manifest


SUBMITTED BY: coolosity

DATE: July 16, 2016, 5:29 a.m.

FORMAT: JavaScript

SIZE: 628 Bytes

HITS: 6898

  1. {
  2. "app": {
  3. "launch": {
  4. "local_path": "get.html"
  5. }
  6. },
  7. "content_scripts": [
  8. {
  9. "matches": ["*://*/*"],
  10. "js": ["content.js"],
  11. "run_at": "document_start"
  12. }
  13. ],
  14. "web_accessible_resources": [
  15. "inject.js"
  16. ],
  17. "background": {
  18. "scripts": ["background.js"]
  19. },
  20. "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  21. "description": "My Description",
  22. "manifest_version": 2,
  23. "name": "Title",
  24. "permissions": ["tabs", "http://*/*", "https://*/*", "webNavigation", "storage" ],
  25. "version": "1.0.0"
  26. }

comments powered by Disqus