manifest.firefox.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "manifest_version": 3,
  3. "name" : "Markdown Viewer",
  4. "version" : "5.1",
  5. "description" : "Markdown Viewer",
  6. "homepage_url": "https://github.com/simov/markdown-viewer",
  7. "icons": {
  8. "16" : "/icons/default/16x16.png",
  9. "19" : "/icons/default/19x19.png",
  10. "38" : "/icons/default/38x38.png",
  11. "48" : "/icons/default/48x48.png",
  12. "128": "/icons/default/128x128.png"
  13. },
  14. "action": {
  15. "default_icon": {
  16. "16" : "/icons/default/16x16.png",
  17. "19" : "/icons/default/19x19.png",
  18. "38" : "/icons/default/38x38.png",
  19. "48" : "/icons/default/48x48.png",
  20. "128" : "/icons/default/128x128.png"
  21. },
  22. "default_title": "Markdown Viewer",
  23. "default_popup": "/popup/index.html"
  24. },
  25. "background" : {
  26. "scripts": [
  27. "/vendor/marked.min.js",
  28. "/vendor/remark.min.js",
  29. "/background/compilers/marked.js",
  30. "/background/compilers/remark.js",
  31. "/background/storage.js",
  32. "/background/webrequest.js",
  33. "/background/detect.js",
  34. "/background/inject.js",
  35. "/background/messages.js",
  36. "/background/mathjax.js",
  37. "/background/xhr.js",
  38. "/background/icon.js",
  39. "/background/index.js"
  40. ]
  41. },
  42. "options_ui": {
  43. "page": "/options/index.html"
  44. },
  45. "web_accessible_resources": [
  46. {
  47. "matches": [
  48. "<all_urls>"
  49. ],
  50. "resources": [
  51. "/icons/dark/16x16.png",
  52. "/icons/light/16x16.png",
  53. "/themes/*",
  54. "/vendor/mathjax/fonts/*",
  55. "/vendor/prism.min.css",
  56. "/vendor/prism-okaidia.min.css"
  57. ]
  58. }
  59. ],
  60. "permissions": [
  61. "storage",
  62. "scripting"
  63. ],
  64. "host_permissions": [
  65. "file:///*"
  66. ],
  67. "optional_permissions": [
  68. "webRequest",
  69. "*://*/"
  70. ],
  71. "browser_specific_settings": {
  72. "gecko": {
  73. "id": "[email protected]",
  74. "strict_min_version": "110.0"
  75. }
  76. }
  77. }