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.

60 lines
1.5 KiB

  1. {
  2. "applications": {
  3. "gecko": {
  4. "id": "uMatrix@raymondhill.net",
  5. "strict_min_version": "53.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.png",
  16. "38": "img/browsericons/icon38.png"
  17. },
  18. "default_title": "uMatrix",
  19. "default_popup": "popup.html"
  20. },
  21. "content_scripts": [
  22. {
  23. "matches": ["http://*/*", "https://*/*"],
  24. "js": ["js/vapi-client.js", "js/contentscript-start.js"],
  25. "run_at": "document_start",
  26. "all_frames": true
  27. },
  28. {
  29. "matches": ["http://*/*", "https://*/*"],
  30. "js": ["js/contentscript-end.js"],
  31. "run_at": "document_end",
  32. "all_frames": true
  33. }
  34. ],
  35. "default_locale": "en",
  36. "description": "__MSG_extShortDesc__",
  37. "icons": {
  38. "16": "img/icon_16.png",
  39. "128": "img/icon_128.png"
  40. },
  41. "manifest_version": 2,
  42. "minimum_chrome_version": "26.0",
  43. "name": "uMatrix",
  44. "options_ui": {
  45. "page": "options_ui.html"
  46. },
  47. "permissions": [
  48. "browsingData",
  49. "cookies",
  50. "privacy",
  51. "storage",
  52. "tabs",
  53. "webNavigation",
  54. "webRequest",
  55. "webRequestBlocking",
  56. "<all_urls>"
  57. ],
  58. "short_name": "uMatrix",
  59. "version": "0.9.9"
  60. }