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.

53 lines
1.2 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.js"],
  24. "run_at": "document_end",
  25. "all_frames": true
  26. }
  27. ],
  28. "default_locale": "en",
  29. "description": "__MSG_extShortDesc__",
  30. "icons": {
  31. "16": "img/icon_16.png",
  32. "128": "img/icon_128.png"
  33. },
  34. "manifest_version": 2,
  35. "name": "uMatrix",
  36. "options_ui": {
  37. "page":"dashboard.html",
  38. "open_in_tab": true
  39. },
  40. "permissions": [
  41. "browsingData",
  42. "cookies",
  43. "privacy",
  44. "storage",
  45. "tabs",
  46. "webNavigation",
  47. "webRequest",
  48. "webRequestBlocking",
  49. "<all_urls>"
  50. ],
  51. "short_name": "uMatrix",
  52. "version": "0.9.9"
  53. }