1
0

manifest.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.52",
  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. "persistent": false
  44. },
  45. "options_page": "src/ui/pages/options.html",
  46. "sidebar_action": {
  47. "browser_style": true,
  48. "default_title": "SingleFile",
  49. "default_panel": "src/ui/pages/panel.html",
  50. "default_icon": "src/ui/resources/icon_128.png",
  51. "open_at_install": false
  52. },
  53. "options_ui": {
  54. "browser_style": true,
  55. "page": "src/ui/pages/options.html",
  56. "open_in_tab": false
  57. },
  58. "browser_action": {
  59. "default_icon": {
  60. "16": "src/ui/resources/icon_16.png",
  61. "48": "src/ui/resources/icon_48.png",
  62. "64": "src/ui/resources/icon_64.png",
  63. "128": "src/ui/resources/icon_128.png"
  64. },
  65. "default_title": "__MSG_buttonDefaultTooltip__"
  66. },
  67. "commands": {
  68. "save-selected-tabs": {
  69. "suggested_key": {
  70. "default": "Ctrl+Shift+Y"
  71. },
  72. "description": "__MSG_commandSaveSelectedTabs__"
  73. },
  74. "save-all-tabs": {
  75. "suggested_key": {
  76. "default": "Ctrl+Shift+U"
  77. },
  78. "description": "__MSG_commandSaveAllTabs__"
  79. }
  80. },
  81. "web_accessible_resources": [
  82. "lib/single-file-hooks-frames.js",
  83. "lib/single-file-infobar.js",
  84. "lib/single-file-extension-editor-init.js",
  85. "lib/single-file-extension-editor.js",
  86. "lib/single-file-extension-editor-helper.js",
  87. "lib/single-file-zip.min.js",
  88. "lib/single-file-z-worker.js",
  89. "lib/web-stream.js",
  90. "src/lib/readability/Readability.js",
  91. "src/lib/readability/Readability-readerable.js",
  92. "src/ui/pages/editor-note-web.css",
  93. "src/ui/pages/editor-mask-web.css",
  94. "src/ui/pages/editor-frame-web.css"
  95. ],
  96. "oauth2": {
  97. "client_id": "207618107333-7tjs1im1pighftpoepea2kvkubnfjj44.apps.googleusercontent.com",
  98. "scopes": [
  99. "https://www.googleapis.com/auth/drive.file"
  100. ]
  101. },
  102. "permissions": [
  103. "identity",
  104. "menus",
  105. "contextMenus",
  106. "downloads",
  107. "storage",
  108. "tabs",
  109. "<all_urls>"
  110. ],
  111. "optional_permissions": [
  112. "identity",
  113. "clipboardWrite",
  114. "nativeMessaging",
  115. "bookmarks",
  116. "webRequest",
  117. "webRequestBlocking"
  118. ],
  119. "browser_specific_settings": {
  120. "gecko": {
  121. "id": "{531906d3-e22f-4a6c-a102-8057b88a1a63}"
  122. },
  123. "gecko_android": {}
  124. },
  125. "devtools_page": "src/core/devtools/devtools.html",
  126. "incognito": "spanning",
  127. "manifest_version": 2,
  128. "default_locale": "en"
  129. }