You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.6 KiB

7 years ago
  1. {
  2. "applications": {
  3. "gecko": {
  4. "id": "uMatrix@raymondhill.net",
  5. "strict_min_version": "56.0a1"
  6. }
  7. },
  8. "author": "Raymond Hill",
  9. "background": {
  10. "page": "background.html"
  11. },
  12. "browser_action": {
  13. "browser_style": false,
  14. "default_icon": {
  15. "19": "img/browsericons/icon19-off.png"
  16. },
  17. "default_title": "uMatrix",
  18. "default_popup": "popup.html"
  19. },
  20. "content_scripts": [
  21. {
  22. "matches": ["http://*/*", "https://*/*"],
  23. "js": ["/js/vapi-client.js", "/js/contentscript-start.js"],
  24. "run_at": "document_start",
  25. "all_frames": true
  26. },
  27. {
  28. "matches": ["http://*/*", "https://*/*"],
  29. "js": ["/js/contentscript.js"],
  30. "run_at": "document_end",
  31. "all_frames": true
  32. }
  33. ],
  34. "default_locale": "en",
  35. "description": "__MSG_extShortDesc__",
  36. "icons": {
  37. "16": "img/icon_16.png",
  38. "128": "img/icon_128.png"
  39. },
  40. "manifest_version": 2,
  41. "name": "uMatrix",
  42. "options_ui": {
  43. "page":"dashboard.html",
  44. "open_in_tab": true
  45. },
  46. "permissions": [
  47. "browsingData",
  48. "cookies",
  49. "privacy",
  50. "storage",
  51. "tabs",
  52. "webNavigation",
  53. "webRequest",
  54. "webRequestBlocking",
  55. "<all_urls>"
  56. ],
  57. "short_name": "uMatrix",
  58. "sidebar_action": {
  59. "default_title": "__MSG_loggerPageName__",
  60. "default_panel": "logger-ui.html",
  61. "default_icon": {
  62. "16": "img/icon_16.png",
  63. "128": "img/icon_128.png"
  64. }
  65. },
  66. "version": "0.9.9"
  67. }