1
0

manifest.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "name": "SingleFile",
  3. "author": "Gildas Lormeau",
  4. "homepage_url": "https://github.com/gildas-lormeau/SingleFile",
  5. "icons": {
  6. "16": "src/ui/resources/icon_16.png",
  7. "48": "src/ui/resources/icon_48.png",
  8. "64": "src/ui/resources/icon_64.png",
  9. "128": "src/ui/resources/icon_128.png"
  10. },
  11. "version": "1.22.60",
  12. "description": "__MSG_extensionDescription__",
  13. "content_scripts": [
  14. {
  15. "matches": [
  16. "<all_urls>"
  17. ],
  18. "run_at": "document_start",
  19. "js": [
  20. "lib/chrome-browser-polyfill.js",
  21. "lib/single-file-frames.js",
  22. "lib/single-file-extension-frames.js"
  23. ],
  24. "all_frames": true,
  25. "match_about_blank": true
  26. },
  27. {
  28. "matches": [
  29. "<all_urls>"
  30. ],
  31. "run_at": "document_start",
  32. "js": [
  33. "lib/web-stream.js",
  34. "lib/chrome-browser-polyfill.js",
  35. "lib/single-file-bootstrap.js",
  36. "lib/single-file-extension-bootstrap.js",
  37. "lib/single-file-infobar.js"
  38. ]
  39. }
  40. ],
  41. "background": {
  42. "page": "src/core/bg/background.html"
  43. },
  44. "sidebar_action": {
  45. "browser_style": true,
  46. "default_title": "SingleFile",
  47. "default_panel": "src/ui/pages/panel.html",
  48. "default_icon": "src/ui/resources/icon_128.png",
  49. "open_at_install": false
  50. },
  51. "options_ui": {
  52. "browser_style": true,
  53. "page": "src/ui/pages/options.html",
  54. "open_in_tab": false
  55. },
  56. "browser_action": {
  57. "default_icon": {
  58. "16": "src/ui/resources/icon_16.png",
  59. "48": "src/ui/resources/icon_48.png",
  60. "64": "src/ui/resources/icon_64.png",
  61. "128": "src/ui/resources/icon_128.png"
  62. },
  63. "default_title": "__MSG_buttonDefaultTooltip__"
  64. },
  65. "commands": {
  66. "save-selected-tabs": {
  67. "suggested_key": {
  68. "default": "Ctrl+Shift+Y"
  69. },
  70. "description": "__MSG_commandSaveSelectedTabs__"
  71. },
  72. "save-all-tabs": {
  73. "suggested_key": {
  74. "default": "Ctrl+Shift+U"
  75. },
  76. "description": "__MSG_commandSaveAllTabs__"
  77. }
  78. },
  79. "web_accessible_resources": [
  80. "lib/single-file-hooks-frames.js",
  81. "lib/single-file-infobar.js",
  82. "lib/single-file-extension-editor-init.js",
  83. "lib/single-file-extension-editor.js",
  84. "lib/single-file-extension-editor-helper.js",
  85. "lib/single-file-zip.min.js",
  86. "lib/single-file-z-worker.js",
  87. "lib/web-stream.js",
  88. "src/lib/readability/Readability.js",
  89. "src/lib/readability/Readability-readerable.js",
  90. "src/ui/pages/editor-note-web.css",
  91. "src/ui/pages/editor-mask-web.css",
  92. "src/ui/pages/editor-frame-web.css"
  93. ],
  94. "permissions": [
  95. "identity",
  96. "menus",
  97. "downloads",
  98. "storage",
  99. "tabs",
  100. "<all_urls>"
  101. ],
  102. "optional_permissions": [
  103. "clipboardWrite",
  104. "nativeMessaging",
  105. "bookmarks",
  106. "webRequest",
  107. "webRequestBlocking"
  108. ],
  109. "browser_specific_settings": {
  110. "gecko": {
  111. "id": "{531906d3-e22f-4a6c-a102-8057b88a1a63}"
  112. },
  113. "gecko_android": {}
  114. },
  115. "devtools_page": "src/core/devtools/devtools.html",
  116. "incognito": "spanning",
  117. "manifest_version": 2,
  118. "default_locale": "en"
  119. }