manifest.json 975 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "Violent monkey",
  3. "version" : "2.0",
  4. "manifest_version" : 2,
  5. "description" : "__MSG_extDescription__",
  6. "developer": {"name" : "Gerald", "url" : "http://gleo.tk"},
  7. "homepage_url":"http://github.com/gera2ld/Violentmonkey-nex",
  8. "icons" : {
  9. "16":"images/icon16.png",
  10. "48":"images/icon48.png",
  11. "128":"images/icon128.png"
  12. },
  13. "default_locale":"en",
  14. "browser_action" : {
  15. "default_icon":"images/icon19.png",
  16. "default_title":"__MSG_extName__",
  17. "default_popup":"popup.html"
  18. },
  19. "background" : {"page" : "background.html"},
  20. "options_page" : "options.html",
  21. "content_scripts": [{
  22. "js": ["injected.js"],
  23. "matches": ["<all_urls>"],
  24. "include_globs": ["*"],
  25. "exclude_globs": [],
  26. "run_at": "document_start",
  27. "all_frames" : true
  28. }],
  29. "web_accessible_resources" : [],
  30. "permissions" : ["tabs", "<all_urls>", "storage", "webRequest", "webRequestBlocking"],
  31. "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'unsafe-eval';"
  32. }