manifest.test.json 1.9 KB

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