manifest.firefox.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "manifest_version": 2,
  3. "name" : "Markdown Viewer",
  4. "version" : "4.0",
  5. "description" : "Markdown Viewer",
  6. "browser_action": {
  7. "browser_style": false,
  8. "default_icon": {
  9. "19" : "/icons/icon19.png",
  10. "38" : "/icons/icon38.png"
  11. },
  12. "default_title": "Markdown Viewer",
  13. "default_popup": "/popup/index.html"
  14. },
  15. "options_ui": {
  16. "page": "/options/index.html"
  17. },
  18. "background" : {
  19. "scripts": [
  20. "/vendor/marked.min.js",
  21. "/vendor/remark.min.js",
  22. "/background/compilers/marked.js",
  23. "/background/compilers/remark.js",
  24. "/background/storage.js",
  25. "/background/webrequest.js",
  26. "/background/detect.js",
  27. "/background/inject.js",
  28. "/background/messages.js",
  29. "/background/mathjax.js",
  30. "/background/xhr.js",
  31. "/background/index.js"
  32. ]
  33. },
  34. "web_accessible_resources": [
  35. "/themes/github.css",
  36. "/themes/github-dark.css",
  37. "/themes/godspeed.css",
  38. "/themes/new-modern.css",
  39. "/themes/torpedo.css",
  40. "/themes/vostok.css",
  41. "/themes/ghostwriter.css",
  42. "/themes/radar.css",
  43. "/themes/foghorn.css",
  44. "/themes/markdown.css",
  45. "/themes/markedapp-byword.css",
  46. "/themes/solarized-dark.css",
  47. "/themes/solarized-light.css",
  48. "/themes/screen.css",
  49. "/themes/markdown5.css",
  50. "/themes/markdown6.css",
  51. "/themes/markdown7.css",
  52. "/themes/markdown8.css",
  53. "/themes/markdown9.css",
  54. "/themes/markdown-alt.css"
  55. ],
  56. "icons": {
  57. "16" : "/icons/icon16.png",
  58. "48" : "/icons/icon48.png",
  59. "128": "/icons/icon128.png"
  60. },
  61. "homepage_url": "https://github.com/simov/markdown-viewer",
  62. "permissions": [
  63. "storage",
  64. "file:///*",
  65. "webRequest",
  66. "webRequestBlocking"
  67. ],
  68. "optional_permissions": [
  69. "https://*/",
  70. "http://*/",
  71. "*://*/"
  72. ],
  73. "applications": {
  74. "gecko": {
  75. "id": "[email protected]",
  76. "strict_min_version": "57.0"
  77. }
  78. }
  79. }