manifest.json 1.5 KB

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