extension-develop 2.0.0-rc.9 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (606) hide show
  1. package/README.md +204 -0
  2. package/dist/add-content-script-wrapper.js +1777 -0
  3. package/dist/add-hmr-accept-code.js +95 -3
  4. package/dist/build.d.ts +2 -0
  5. package/dist/cleanup.d.ts +1 -0
  6. package/dist/deprecated-shadow-root.js +115 -14
  7. package/dist/dev.d.ts +2 -0
  8. package/dist/develop-lib/config-types.d.ts +85 -0
  9. package/dist/develop-lib/extract-from-zip.d.ts +1 -0
  10. package/dist/develop-lib/find-nearest-package.d.ts +2 -0
  11. package/dist/develop-lib/generate-extension-types.d.ts +1 -0
  12. package/dist/develop-lib/generate-zip.d.ts +2 -0
  13. package/dist/develop-lib/get-extension-config.d.ts +6 -0
  14. package/dist/develop-lib/get-project-path.d.ts +6 -0
  15. package/dist/develop-lib/install-dependencies.d.ts +2 -0
  16. package/dist/develop-lib/messages.d.ts +35 -0
  17. package/dist/develop-lib/validate-user-dependencies.d.ts +1 -0
  18. package/dist/ensure-hmr-for-scripts.js +74 -3
  19. package/dist/extensions/chrome-manager-extension/background.js +1 -1
  20. package/dist/extensions/chrome-manager-extension/images/logo.png +0 -0
  21. package/dist/extensions/chrome-manager-extension/manifest.json +3 -3
  22. package/dist/extensions/chrome-manager-extension/pages/welcome.html +3 -6
  23. package/dist/extensions/chrome-manager-extension/reload-service.js +214 -62
  24. package/dist/extensions/chromium-based-manager-extension/background.js +1 -1
  25. package/dist/extensions/chromium-based-manager-extension/images/logo.png +0 -0
  26. package/dist/extensions/chromium-based-manager-extension/manifest.json +3 -3
  27. package/dist/extensions/chromium-based-manager-extension/pages/welcome.html +3 -6
  28. package/dist/extensions/chromium-based-manager-extension/reload-service.js +185 -28
  29. package/dist/extensions/edge-manager-extension/background.js +1 -1
  30. package/dist/extensions/edge-manager-extension/images/logo.png +0 -0
  31. package/dist/extensions/edge-manager-extension/manifest.json +3 -3
  32. package/dist/extensions/edge-manager-extension/pages/welcome.html +3 -6
  33. package/dist/extensions/edge-manager-extension/reload-service.js +223 -69
  34. package/dist/extensions/firefox-manager-extension/background.js +40 -12
  35. package/dist/extensions/firefox-manager-extension/define-initial-tab.js +10 -12
  36. package/dist/extensions/firefox-manager-extension/images/logo.png +0 -0
  37. package/dist/extensions/firefox-manager-extension/manifest.json +4 -5
  38. package/dist/extensions/firefox-manager-extension/pages/welcome.html +3 -6
  39. package/dist/extensions/firefox-manager-extension/reload-service.js +113 -75
  40. package/dist/extensions/gecko-based-manager-extension/background.js +1 -1
  41. package/dist/extensions/gecko-based-manager-extension/define-initial-tab.js +7 -4
  42. package/dist/extensions/gecko-based-manager-extension/images/logo.png +0 -0
  43. package/dist/extensions/gecko-based-manager-extension/manifest.json +3 -3
  44. package/dist/extensions/gecko-based-manager-extension/pages/welcome.html +3 -6
  45. package/dist/extensions/gecko-based-manager-extension/reload-service.js +54 -26
  46. package/dist/inject-chromium-client-loader.js +144 -22
  47. package/dist/inject-firefox-client-loader.js +164 -47
  48. package/dist/minimum-chromium-file.js +25 -0
  49. package/dist/minimum-content-file.js +5 -0
  50. package/dist/minimum-firefox-file.js +17 -0
  51. package/dist/minimum-script-file.js +5 -0
  52. package/dist/module.d.ts +8 -95
  53. package/dist/module.js +10543 -128
  54. package/dist/preview.d.ts +2 -0
  55. package/dist/rslib.config.d.ts +3 -0
  56. package/dist/start.d.ts +2 -0
  57. package/dist/types.d.ts +11 -0
  58. package/dist/vitest.config.d.mts +2 -0
  59. package/dist/webpack/dev-server.d.ts +3 -0
  60. package/dist/webpack/plugin-browsers/browsers-lib/add-progress-bar.d.ts +1 -0
  61. package/dist/webpack/plugin-browsers/browsers-lib/constants.d.ts +5 -0
  62. package/dist/webpack/plugin-browsers/browsers-lib/dynamic-extension-manager.d.ts +35 -0
  63. package/dist/webpack/plugin-browsers/browsers-lib/html-merge.d.ts +1 -0
  64. package/dist/webpack/plugin-browsers/browsers-lib/instance-manager.d.ts +71 -0
  65. package/dist/webpack/plugin-browsers/browsers-lib/messages.d.ts +161 -0
  66. package/dist/webpack/plugin-browsers/browsers-lib/rdp-wire.d.ts +7 -0
  67. package/dist/webpack/plugin-browsers/browsers-lib/shared-utils.d.ts +16 -0
  68. package/dist/webpack/plugin-browsers/browsers-types.d.ts +131 -0
  69. package/dist/webpack/plugin-browsers/index.d.ts +41 -0
  70. package/dist/webpack/plugin-browsers/run-chromium/browser-config.d.ts +3 -0
  71. package/dist/webpack/plugin-browsers/run-chromium/create-profile.d.ts +10 -0
  72. package/dist/webpack/plugin-browsers/run-chromium/index.d.ts +28 -0
  73. package/dist/webpack/plugin-browsers/run-chromium/master-preferences.d.ts +161 -0
  74. package/dist/webpack/plugin-browsers/run-chromium/setup-chrome-inspection/cdp-client.d.ts +29 -0
  75. package/dist/webpack/plugin-browsers/run-chromium/setup-chrome-inspection/index.d.ts +25 -0
  76. package/dist/webpack/plugin-browsers/run-firefox/firefox/binary-detector.d.ts +15 -0
  77. package/dist/webpack/plugin-browsers/run-firefox/firefox/browser-config.d.ts +7 -0
  78. package/dist/webpack/plugin-browsers/run-firefox/firefox/create-profile.d.ts +13 -0
  79. package/dist/webpack/plugin-browsers/run-firefox/firefox/master-preferences.d.ts +95 -0
  80. package/dist/webpack/plugin-browsers/run-firefox/index.d.ts +26 -0
  81. package/dist/webpack/plugin-browsers/run-firefox/remote-firefox/index.d.ts +13 -0
  82. package/dist/webpack/plugin-browsers/run-firefox/remote-firefox/message-utils.d.ts +2 -0
  83. package/dist/webpack/plugin-browsers/run-firefox/remote-firefox/messaging-client.d.ts +42 -0
  84. package/dist/webpack/plugin-browsers/run-firefox/remote-firefox/setup-firefox-inspection.d.ts +31 -0
  85. package/dist/webpack/plugin-compatibility/feature-browser-specific-fields.d.ts +9 -0
  86. package/dist/webpack/plugin-compatibility/feature-polyfill.d.ts +12 -0
  87. package/dist/webpack/plugin-compatibility/index.d.ts +13 -0
  88. package/dist/webpack/plugin-compilation/clean-dist.d.ts +8 -0
  89. package/dist/webpack/plugin-compilation/env.d.ts +9 -0
  90. package/dist/webpack/plugin-compilation/index.d.ts +12 -0
  91. package/dist/webpack/plugin-css/common-style-loaders.d.ts +8 -0
  92. package/dist/webpack/plugin-css/css-in-content-script-loader.d.ts +11 -0
  93. package/dist/webpack/plugin-css/css-in-html-loader.d.ts +8 -0
  94. package/dist/webpack/plugin-css/css-tools/less.d.ts +4 -0
  95. package/dist/webpack/plugin-css/css-tools/postcss.d.ts +3 -0
  96. package/dist/webpack/plugin-css/css-tools/sass.d.ts +4 -0
  97. package/dist/webpack/plugin-css/css-tools/stylelint.d.ts +4 -0
  98. package/dist/webpack/plugin-css/css-tools/tailwind.d.ts +2 -0
  99. package/dist/webpack/plugin-css/index.d.ts +9 -0
  100. package/dist/webpack/plugin-css/is-content-script.d.ts +1 -0
  101. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/action.d.ts +2 -0
  102. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/background.d.ts +2 -0
  103. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/browser_action.d.ts +2 -0
  104. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/chrome_url_overrides.d.ts +2 -0
  105. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/devtools_page.d.ts +2 -0
  106. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/index.d.ts +2 -0
  107. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/options_ui.d.ts +2 -0
  108. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/page_action.d.ts +2 -0
  109. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/sandbox.d.ts +2 -0
  110. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/side_panel.d.ts +2 -0
  111. package/dist/webpack/plugin-extension/data/manifest-fields/html-fields/sidebar_action.d.ts +2 -0
  112. package/dist/webpack/plugin-extension/data/manifest-fields/icons-fields/action.d.ts +2 -0
  113. package/dist/webpack/plugin-extension/data/manifest-fields/icons-fields/browser_action.d.ts +2 -0
  114. package/dist/webpack/plugin-extension/data/manifest-fields/icons-fields/browser_action.theme_icons.d.ts +2 -0
  115. package/dist/webpack/plugin-extension/data/manifest-fields/icons-fields/icons.d.ts +2 -0
  116. package/dist/webpack/plugin-extension/data/manifest-fields/icons-fields/index.d.ts +2 -0
  117. package/dist/webpack/plugin-extension/data/manifest-fields/icons-fields/normalize.d.ts +6 -0
  118. package/dist/webpack/plugin-extension/data/manifest-fields/icons-fields/page_action.d.ts +2 -0
  119. package/dist/webpack/plugin-extension/data/manifest-fields/icons-fields/sidebar_action.d.ts +2 -0
  120. package/dist/webpack/plugin-extension/data/manifest-fields/index.d.ts +19 -0
  121. package/dist/webpack/plugin-extension/data/manifest-fields/json-fields/declarative_net_request.d.ts +2 -0
  122. package/dist/webpack/plugin-extension/data/manifest-fields/json-fields/index.d.ts +2 -0
  123. package/dist/webpack/plugin-extension/data/manifest-fields/json-fields/storage.d.ts +2 -0
  124. package/dist/webpack/plugin-extension/data/manifest-fields/locales-fields/index.d.ts +1 -0
  125. package/dist/webpack/plugin-extension/data/manifest-fields/normalize.d.ts +10 -0
  126. package/dist/webpack/plugin-extension/data/manifest-fields/scripts-fields/background.d.ts +2 -0
  127. package/dist/webpack/plugin-extension/data/manifest-fields/scripts-fields/content_scripts.d.ts +2 -0
  128. package/dist/webpack/plugin-extension/data/manifest-fields/scripts-fields/index.d.ts +2 -0
  129. package/dist/webpack/plugin-extension/data/manifest-fields/scripts-fields/service_worker.d.ts +2 -0
  130. package/dist/webpack/plugin-extension/data/manifest-fields/scripts-fields/user_scripts.d.ts +2 -0
  131. package/dist/webpack/plugin-extension/data/manifest-fields/web-resources-fields/index.d.ts +2 -0
  132. package/dist/webpack/plugin-extension/data/special-folders/generate-entries.d.ts +4 -0
  133. package/dist/webpack/plugin-extension/data/special-folders/index.d.ts +12 -0
  134. package/dist/webpack/plugin-extension/feature-html/__spec__/html-lib/test-utils.d.ts +18 -0
  135. package/dist/webpack/plugin-extension/feature-html/html-lib/parse-html.d.ts +8 -0
  136. package/dist/webpack/plugin-extension/feature-html/html-lib/patch-html.d.ts +8 -0
  137. package/dist/webpack/plugin-extension/feature-html/html-lib/utils.d.ts +18 -0
  138. package/dist/webpack/plugin-extension/feature-html/index.d.ts +37 -0
  139. package/dist/webpack/plugin-extension/feature-html/steps/add-assets-to-compilation.d.ts +11 -0
  140. package/dist/webpack/plugin-extension/feature-html/steps/add-scripts-and-styles-to-compilation.d.ts +10 -0
  141. package/dist/webpack/plugin-extension/feature-html/steps/add-to-file-dependencies.d.ts +10 -0
  142. package/dist/webpack/plugin-extension/feature-html/steps/emit-html-file.d.ts +9 -0
  143. package/dist/webpack/plugin-extension/feature-html/steps/ensure-hmr-for-scripts.d.ts +2 -0
  144. package/dist/webpack/plugin-extension/feature-html/steps/handle-common-errors.d.ts +10 -0
  145. package/dist/webpack/plugin-extension/feature-html/steps/minimum-script-file.d.ts +1 -0
  146. package/dist/webpack/plugin-extension/feature-html/steps/throw-if-recompile-is-needed.d.ts +13 -0
  147. package/dist/webpack/plugin-extension/feature-html/steps/update-html-file.d.ts +10 -0
  148. package/dist/webpack/plugin-extension/feature-icons/index.d.ts +25 -0
  149. package/dist/webpack/plugin-extension/feature-icons/steps/add-to-file-dependencies.d.ts +9 -0
  150. package/dist/webpack/plugin-extension/feature-icons/steps/emit-file.d.ts +9 -0
  151. package/dist/webpack/plugin-extension/feature-json/index.d.ts +18 -0
  152. package/dist/webpack/plugin-extension/feature-locales/get-locales.d.ts +1 -0
  153. package/dist/webpack/plugin-extension/feature-locales/index.d.ts +13 -0
  154. package/dist/webpack/plugin-extension/feature-manifest/index.d.ts +23 -0
  155. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/background.d.ts +10 -0
  156. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/chrome_url_overrides.d.ts +8 -0
  157. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/commands.d.ts +16 -0
  158. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/content_scripts.d.ts +7 -0
  159. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/content_security_policy.d.ts +4 -0
  160. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/devtools_page.d.ts +4 -0
  161. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/icons.d.ts +6 -0
  162. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/index.d.ts +2 -0
  163. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/omnibox.d.ts +2 -0
  164. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/options_page.d.ts +4 -0
  165. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/options_ui.d.ts +8 -0
  166. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/page_action.d.ts +8 -0
  167. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/permissions.d.ts +4 -0
  168. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/sandbox.d.ts +7 -0
  169. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/sidebar_action.d.ts +2 -0
  170. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/storage.d.ts +6 -0
  171. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/theme.d.ts +2 -0
  172. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/user_scripts.d.ts +2 -0
  173. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/common/web_accessible_resources.d.ts +9 -0
  174. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/index.d.ts +2 -0
  175. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv2/background.d.ts +10 -0
  176. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv2/browser_action.d.ts +12 -0
  177. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv2/chrome_settings_overrides.d.ts +24 -0
  178. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv2/index.d.ts +2 -0
  179. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv2/page_action.d.ts +1 -0
  180. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv2/sidebar_action.d.ts +1 -0
  181. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv2/theme_experiment.d.ts +2 -0
  182. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv3/action.d.ts +8 -0
  183. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv3/background.d.ts +10 -0
  184. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv3/declarative_net_request.d.ts +2 -0
  185. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv3/host_permissions.d.ts +2 -0
  186. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv3/index.d.ts +2 -0
  187. package/dist/webpack/plugin-extension/feature-manifest/manifest-overrides/mv3/side_panel.d.ts +2 -0
  188. package/dist/webpack/plugin-extension/feature-manifest/steps/add-dependencies.d.ts +6 -0
  189. package/dist/webpack/plugin-extension/feature-manifest/steps/check-manifest-files.d.ts +17 -0
  190. package/dist/webpack/plugin-extension/feature-manifest/steps/emit-manifest.d.ts +7 -0
  191. package/dist/webpack/plugin-extension/feature-manifest/steps/throw-if-recompile.d.ts +11 -0
  192. package/dist/webpack/plugin-extension/feature-manifest/steps/update-manifest.d.ts +9 -0
  193. package/dist/webpack/plugin-extension/feature-scripts/index.d.ts +27 -0
  194. package/dist/webpack/plugin-extension/feature-scripts/scripts-lib/utils.d.ts +3 -0
  195. package/dist/webpack/plugin-extension/feature-scripts/steps/add-content-script-wrapper.d.ts +2 -0
  196. package/dist/webpack/plugin-extension/feature-scripts/steps/add-hmr-accept-code.d.ts +2 -0
  197. package/dist/webpack/plugin-extension/feature-scripts/steps/add-public-path-for-main-world.d.ts +11 -0
  198. package/dist/webpack/plugin-extension/feature-scripts/steps/add-public-path-runtime-module.d.ts +4 -0
  199. package/dist/webpack/plugin-extension/feature-scripts/steps/add-scripts.d.ts +9 -0
  200. package/dist/webpack/plugin-extension/feature-scripts/steps/deprecated-shadow-root.d.ts +2 -0
  201. package/dist/webpack/plugin-extension/feature-scripts/steps/javascript-content-script-wrapper.d.ts +1 -0
  202. package/dist/webpack/plugin-extension/feature-scripts/steps/preact-content-script-wrapper.d.ts +1 -0
  203. package/dist/webpack/plugin-extension/feature-scripts/steps/react-content-script-wrapper.d.ts +1 -0
  204. package/dist/webpack/plugin-extension/feature-scripts/steps/svelte-content-script-wrapper.d.ts +1 -0
  205. package/dist/webpack/plugin-extension/feature-scripts/steps/typescript-content-script-wrapper.d.ts +1 -0
  206. package/dist/webpack/plugin-extension/feature-scripts/steps/vue-content-script-wrapper.d.ts +1 -0
  207. package/dist/webpack/plugin-extension/feature-special-folders/copy-public-folder.d.ts +14 -0
  208. package/dist/webpack/plugin-extension/feature-special-folders/index.d.ts +19 -0
  209. package/dist/webpack/plugin-extension/feature-special-folders/warn-upon-folder-changes.d.ts +7 -0
  210. package/dist/webpack/plugin-extension/feature-web-resources/clean-matches.d.ts +7 -0
  211. package/dist/webpack/plugin-extension/feature-web-resources/index.d.ts +18 -0
  212. package/dist/webpack/plugin-extension/index.d.ts +10 -0
  213. package/dist/webpack/plugin-js-frameworks/index.d.ts +13 -0
  214. package/dist/webpack/plugin-js-frameworks/js-tools/babel.d.ts +16 -0
  215. package/dist/webpack/plugin-js-frameworks/js-tools/preact.d.ts +3 -0
  216. package/dist/webpack/plugin-js-frameworks/js-tools/react.d.ts +3 -0
  217. package/dist/webpack/plugin-js-frameworks/js-tools/svelte.d.ts +3 -0
  218. package/dist/webpack/plugin-js-frameworks/js-tools/typescript.d.ts +36 -0
  219. package/dist/webpack/plugin-js-frameworks/js-tools/vue.d.ts +3 -0
  220. package/dist/webpack/plugin-js-frameworks/load-loader-options.d.ts +1 -0
  221. package/dist/webpack/plugin-reload/index.d.ts +13 -0
  222. package/dist/webpack/plugin-reload/reload-lib/messages.d.ts +106 -0
  223. package/dist/webpack/plugin-reload/reload-types.d.ts +14 -0
  224. package/dist/webpack/plugin-reload/start-server.d.ts +4 -0
  225. package/dist/webpack/plugin-reload/steps/create-web-socket-server/index.d.ts +14 -0
  226. package/dist/webpack/plugin-reload/steps/create-web-socket-server/web-socket-server/broadcast-message.d.ts +2 -0
  227. package/dist/webpack/plugin-reload/steps/create-web-socket-server/web-socket-server/message-dispatcher.d.ts +2 -0
  228. package/dist/webpack/plugin-reload/steps/create-web-socket-server/web-socket-server/servers.d.ts +2 -0
  229. package/dist/webpack/plugin-reload/steps/setup-chromium-reload-client/index.d.ts +3 -0
  230. package/dist/webpack/plugin-reload/steps/setup-chromium-reload-client/inject-chromium-client-loader.d.ts +9 -0
  231. package/dist/webpack/plugin-reload/steps/setup-firefox-reload-client/index.d.ts +3 -0
  232. package/dist/webpack/plugin-reload/steps/setup-firefox-reload-client/inject-firefox-client-loader.d.ts +9 -0
  233. package/dist/webpack/plugin-reload/steps/setup-reload-strategy/apply-manifest-dev-defaults/index.d.ts +9 -0
  234. package/dist/webpack/plugin-reload/steps/setup-reload-strategy/apply-manifest-dev-defaults/patch-background.d.ts +15 -0
  235. package/dist/webpack/plugin-reload/steps/setup-reload-strategy/apply-manifest-dev-defaults/patch-csp.d.ts +5 -0
  236. package/dist/webpack/plugin-reload/steps/setup-reload-strategy/apply-manifest-dev-defaults/patch-externally-connectable.d.ts +10 -0
  237. package/dist/webpack/plugin-reload/steps/setup-reload-strategy/apply-manifest-dev-defaults/patch-web-resources.d.ts +10 -0
  238. package/dist/webpack/plugin-reload/steps/setup-reload-strategy/generate-manager-extension.d.ts +15 -0
  239. package/dist/webpack/plugin-reload/steps/setup-reload-strategy/index.d.ts +10 -0
  240. package/dist/webpack/plugin-reload/steps/setup-reload-strategy/target-web-extension-plugin/index.d.ts +13 -0
  241. package/dist/webpack/plugin-static-assets/index.d.ts +12 -0
  242. package/dist/webpack/webpack-config.d.ts +14 -0
  243. package/dist/webpack/webpack-lib/auto-exit.d.ts +1 -0
  244. package/dist/webpack/webpack-lib/constants.d.ts +4 -0
  245. package/dist/webpack/webpack-lib/messages.d.ts +121 -0
  246. package/dist/webpack/webpack-lib/port-manager.d.ts +27 -0
  247. package/dist/webpack/webpack-lib/utils.d.ts +20 -0
  248. package/dist/webpack/webpack-types.d.ts +49 -0
  249. package/package.json +64 -27
  250. package/dist/depreacated-shadow-root.js +0 -34
  251. package/dist/inject-content-css-during-dev.js +0 -10
  252. package/dist/minimum-chromium-file.mjs +0 -1
  253. package/dist/minimum-content-file.mjs +0 -1
  254. package/dist/minimum-firefox-file.mjs +0 -1
  255. package/dist/resolver-loader.js +0 -1
  256. package/dist/resolver-module.mjs +0 -1
  257. package/dist/run-chrome-profile/ChromeFeatureState +0 -1
  258. package/dist/run-chrome-profile/Default/Affiliation Database +0 -0
  259. package/dist/run-chrome-profile/Default/AutofillStrikeDatabase/LOG +0 -0
  260. package/dist/run-chrome-profile/Default/AutofillStrikeDatabase/LOG.old +0 -0
  261. package/dist/run-chrome-profile/Default/BrowsingTopicsSiteData +0 -0
  262. package/dist/run-chrome-profile/Default/BrowsingTopicsSiteData-journal +0 -0
  263. package/dist/run-chrome-profile/Default/BrowsingTopicsState +0 -12
  264. package/dist/run-chrome-profile/Default/BudgetDatabase/LOCK +0 -0
  265. package/dist/run-chrome-profile/Default/BudgetDatabase/LOG +0 -0
  266. package/dist/run-chrome-profile/Default/BudgetDatabase/LOG.old +0 -0
  267. package/dist/run-chrome-profile/Default/Cache/Cache_Data/025191c01cb9560a_0 +0 -0
  268. package/dist/run-chrome-profile/Default/Cache/Cache_Data/05b7af632a0788c4_0 +0 -0
  269. package/dist/run-chrome-profile/Default/Cache/Cache_Data/06d18b346a40f753_0 +0 -0
  270. package/dist/run-chrome-profile/Default/Cache/Cache_Data/09442a94267e5d1b_0 +0 -0
  271. package/dist/run-chrome-profile/Default/Cache/Cache_Data/0a659b2fa80f7d18_0 +0 -0
  272. package/dist/run-chrome-profile/Default/Cache/Cache_Data/0c5ece120a4aa9c4_0 +0 -0
  273. package/dist/run-chrome-profile/Default/Cache/Cache_Data/0df08bba9fc5fdac_0 +0 -0
  274. package/dist/run-chrome-profile/Default/Cache/Cache_Data/15145040f7f12f31_0 +0 -0
  275. package/dist/run-chrome-profile/Default/Cache/Cache_Data/18cae013af62500a_0 +0 -0
  276. package/dist/run-chrome-profile/Default/Cache/Cache_Data/1e88f258e3680439_0 +0 -0
  277. package/dist/run-chrome-profile/Default/Cache/Cache_Data/207a53d3f4a4c4bc_0 +0 -0
  278. package/dist/run-chrome-profile/Default/Cache/Cache_Data/22b58fcf518f5674_0 +0 -0
  279. package/dist/run-chrome-profile/Default/Cache/Cache_Data/24111eb856fec6e6_0 +0 -0
  280. package/dist/run-chrome-profile/Default/Cache/Cache_Data/257b9ada9582cd59_0 +0 -0
  281. package/dist/run-chrome-profile/Default/Cache/Cache_Data/275fd93a285332c0_0 +0 -0
  282. package/dist/run-chrome-profile/Default/Cache/Cache_Data/27be01069ada1058_0 +0 -0
  283. package/dist/run-chrome-profile/Default/Cache/Cache_Data/2bd215b1cc3c8643_0 +0 -0
  284. package/dist/run-chrome-profile/Default/Cache/Cache_Data/2d6ffdfbd670a4e8_0 +0 -0
  285. package/dist/run-chrome-profile/Default/Cache/Cache_Data/30a7fd0752f0c20d_0 +0 -0
  286. package/dist/run-chrome-profile/Default/Cache/Cache_Data/3164cf42e96b9664_0 +0 -0
  287. package/dist/run-chrome-profile/Default/Cache/Cache_Data/31907c8cd5dbb0d7_0 +0 -0
  288. package/dist/run-chrome-profile/Default/Cache/Cache_Data/378470234e1889fb_0 +0 -0
  289. package/dist/run-chrome-profile/Default/Cache/Cache_Data/39b962857089ba5e_0 +0 -0
  290. package/dist/run-chrome-profile/Default/Cache/Cache_Data/3fb3b062de8f8809_0 +0 -0
  291. package/dist/run-chrome-profile/Default/Cache/Cache_Data/4496d0a64b8e2ff1_0 +0 -0
  292. package/dist/run-chrome-profile/Default/Cache/Cache_Data/459aacad64df1a20_0 +0 -0
  293. package/dist/run-chrome-profile/Default/Cache/Cache_Data/492ed577e4693e3f_0 +0 -0
  294. package/dist/run-chrome-profile/Default/Cache/Cache_Data/4cb485a7a714929a_0 +0 -0
  295. package/dist/run-chrome-profile/Default/Cache/Cache_Data/4ff29ec24ac18d79_0 +0 -0
  296. package/dist/run-chrome-profile/Default/Cache/Cache_Data/544232310d1a0a06_0 +0 -0
  297. package/dist/run-chrome-profile/Default/Cache/Cache_Data/55ed72b0b4c0b90e_0 +0 -0
  298. package/dist/run-chrome-profile/Default/Cache/Cache_Data/57c911b58ffc1b31_0 +0 -0
  299. package/dist/run-chrome-profile/Default/Cache/Cache_Data/5f883d2c96d94f47_0 +0 -0
  300. package/dist/run-chrome-profile/Default/Cache/Cache_Data/668471e493562a86_0 +0 -0
  301. package/dist/run-chrome-profile/Default/Cache/Cache_Data/686b16113c27b51c_0 +0 -0
  302. package/dist/run-chrome-profile/Default/Cache/Cache_Data/6995a7c799490d3d_0 +0 -0
  303. package/dist/run-chrome-profile/Default/Cache/Cache_Data/6f7f729885fc6405_0 +0 -0
  304. package/dist/run-chrome-profile/Default/Cache/Cache_Data/70f5010b6251d3d7_0 +0 -0
  305. package/dist/run-chrome-profile/Default/Cache/Cache_Data/78ed79bc5487503a_0 +0 -0
  306. package/dist/run-chrome-profile/Default/Cache/Cache_Data/84e415bdea6bf983_0 +0 -0
  307. package/dist/run-chrome-profile/Default/Cache/Cache_Data/9046ef8fa437e5d7_0 +0 -0
  308. package/dist/run-chrome-profile/Default/Cache/Cache_Data/93d81321f8c35eab_0 +0 -0
  309. package/dist/run-chrome-profile/Default/Cache/Cache_Data/94a5260219485fdf_0 +0 -0
  310. package/dist/run-chrome-profile/Default/Cache/Cache_Data/961c7a9dcf1d5fe3_0 +0 -0
  311. package/dist/run-chrome-profile/Default/Cache/Cache_Data/963f816968a47709_0 +0 -0
  312. package/dist/run-chrome-profile/Default/Cache/Cache_Data/97eb05d149fa8180_0 +0 -0
  313. package/dist/run-chrome-profile/Default/Cache/Cache_Data/a54fc271588d9d41_0 +0 -0
  314. package/dist/run-chrome-profile/Default/Cache/Cache_Data/a7ec2678f15b2b6d_0 +0 -0
  315. package/dist/run-chrome-profile/Default/Cache/Cache_Data/b3095246000ea960_0 +0 -0
  316. package/dist/run-chrome-profile/Default/Cache/Cache_Data/ba3f88b58ae6c933_0 +0 -0
  317. package/dist/run-chrome-profile/Default/Cache/Cache_Data/bbde820c1fee5c3c_0 +0 -0
  318. package/dist/run-chrome-profile/Default/Cache/Cache_Data/bf5945304ded8ca6_0 +0 -0
  319. package/dist/run-chrome-profile/Default/Cache/Cache_Data/c894826beba9fc11_0 +0 -0
  320. package/dist/run-chrome-profile/Default/Cache/Cache_Data/caca5541d401cf41_0 +0 -0
  321. package/dist/run-chrome-profile/Default/Cache/Cache_Data/d3c2a489bef951de_0 +0 -0
  322. package/dist/run-chrome-profile/Default/Cache/Cache_Data/d9a190d1d7d66bdd_0 +0 -0
  323. package/dist/run-chrome-profile/Default/Cache/Cache_Data/d9d9fe0a0f8883f0_0 +0 -0
  324. package/dist/run-chrome-profile/Default/Cache/Cache_Data/da5600d748a3d40d_0 +0 -0
  325. package/dist/run-chrome-profile/Default/Cache/Cache_Data/e2fbeb70759b0860_0 +0 -0
  326. package/dist/run-chrome-profile/Default/Cache/Cache_Data/e32ff760e1b4ec46_0 +0 -0
  327. package/dist/run-chrome-profile/Default/Cache/Cache_Data/e5c658ea95c0a29a_0 +0 -0
  328. package/dist/run-chrome-profile/Default/Cache/Cache_Data/e85ac8952d7783d7_0 +0 -0
  329. package/dist/run-chrome-profile/Default/Cache/Cache_Data/ea75bd91e54a494a_0 +0 -0
  330. package/dist/run-chrome-profile/Default/Cache/Cache_Data/ebadaa36379fd994_0 +0 -0
  331. package/dist/run-chrome-profile/Default/Cache/Cache_Data/f3a443b4d8db944d_0 +0 -0
  332. package/dist/run-chrome-profile/Default/Cache/Cache_Data/f3a70b90dcd40113_0 +0 -0
  333. package/dist/run-chrome-profile/Default/Cache/Cache_Data/f4f5420fc5a9003d_0 +0 -0
  334. package/dist/run-chrome-profile/Default/Cache/Cache_Data/f9e143e57946c84b_0 +0 -0
  335. package/dist/run-chrome-profile/Default/Cache/Cache_Data/index +0 -0
  336. package/dist/run-chrome-profile/Default/Cache/Cache_Data/index-dir/the-real-index +0 -0
  337. package/dist/run-chrome-profile/Default/ClientCertificates/LOCK +0 -0
  338. package/dist/run-chrome-profile/Default/ClientCertificates/LOG +0 -0
  339. package/dist/run-chrome-profile/Default/ClientCertificates/LOG.old +0 -0
  340. package/dist/run-chrome-profile/Default/Code Cache/js/0861135386d2c738_0 +0 -0
  341. package/dist/run-chrome-profile/Default/Code Cache/js/19f6466fb9b618ce_0 +0 -0
  342. package/dist/run-chrome-profile/Default/Code Cache/js/1b5a04a8f66ab70c_0 +0 -0
  343. package/dist/run-chrome-profile/Default/Code Cache/js/20a1d4f1d64a6e4a_0 +0 -0
  344. package/dist/run-chrome-profile/Default/Code Cache/js/218fe828c74bdb99_0 +0 -0
  345. package/dist/run-chrome-profile/Default/Code Cache/js/3d7a6b9ba7b8e97d_0 +0 -0
  346. package/dist/run-chrome-profile/Default/Code Cache/js/476e356260f818d6_0 +0 -0
  347. package/dist/run-chrome-profile/Default/Code Cache/js/4ade40caa2a85163_0 +0 -0
  348. package/dist/run-chrome-profile/Default/Code Cache/js/56560d269952a184_0 +0 -0
  349. package/dist/run-chrome-profile/Default/Code Cache/js/64849f954a94216e_0 +0 -0
  350. package/dist/run-chrome-profile/Default/Code Cache/js/6580147029871082_0 +0 -0
  351. package/dist/run-chrome-profile/Default/Code Cache/js/6aec1e7616284cdd_0 +0 -0
  352. package/dist/run-chrome-profile/Default/Code Cache/js/7d53e29663da0b76_0 +0 -0
  353. package/dist/run-chrome-profile/Default/Code Cache/js/838d85c38184d753_0 +0 -0
  354. package/dist/run-chrome-profile/Default/Code Cache/js/95a62562b95ac9f9_0 +0 -0
  355. package/dist/run-chrome-profile/Default/Code Cache/js/9b6ef7d7a65e720d_0 +0 -0
  356. package/dist/run-chrome-profile/Default/Code Cache/js/a096196665df2f44_0 +0 -0
  357. package/dist/run-chrome-profile/Default/Code Cache/js/a572b6bb234d4a65_0 +0 -0
  358. package/dist/run-chrome-profile/Default/Code Cache/js/a8bfd7ab3bf7adbd_0 +0 -0
  359. package/dist/run-chrome-profile/Default/Code Cache/js/b5d00710776b3b78_0 +0 -0
  360. package/dist/run-chrome-profile/Default/Code Cache/js/ba446f34fd660131_0 +0 -0
  361. package/dist/run-chrome-profile/Default/Code Cache/js/bd25d8bae4a347fb_0 +0 -0
  362. package/dist/run-chrome-profile/Default/Code Cache/js/d833cd33af1db7c6_0 +0 -0
  363. package/dist/run-chrome-profile/Default/Code Cache/js/d876d0d7d35cd53f_0 +0 -0
  364. package/dist/run-chrome-profile/Default/Code Cache/js/d91fc36c8dfd76dc_0 +0 -0
  365. package/dist/run-chrome-profile/Default/Code Cache/js/e1435a1865ecedae_0 +0 -0
  366. package/dist/run-chrome-profile/Default/Code Cache/js/index +0 -0
  367. package/dist/run-chrome-profile/Default/Code Cache/js/index-dir/the-real-index +0 -0
  368. package/dist/run-chrome-profile/Default/Code Cache/wasm/index +0 -0
  369. package/dist/run-chrome-profile/Default/Code Cache/wasm/index-dir/the-real-index +0 -0
  370. package/dist/run-chrome-profile/Default/Cookies +0 -0
  371. package/dist/run-chrome-profile/Default/Cookies-journal +0 -0
  372. package/dist/run-chrome-profile/Default/DIPS +0 -0
  373. package/dist/run-chrome-profile/Default/DawnGraphiteCache/data_0 +0 -0
  374. package/dist/run-chrome-profile/Default/DawnGraphiteCache/data_1 +0 -0
  375. package/dist/run-chrome-profile/Default/DawnGraphiteCache/data_2 +0 -0
  376. package/dist/run-chrome-profile/Default/DawnGraphiteCache/data_3 +0 -0
  377. package/dist/run-chrome-profile/Default/DawnGraphiteCache/index +0 -0
  378. package/dist/run-chrome-profile/Default/DawnWebGPUCache/data_0 +0 -0
  379. package/dist/run-chrome-profile/Default/DawnWebGPUCache/data_1 +0 -0
  380. package/dist/run-chrome-profile/Default/DawnWebGPUCache/data_2 +0 -0
  381. package/dist/run-chrome-profile/Default/DawnWebGPUCache/data_3 +0 -0
  382. package/dist/run-chrome-profile/Default/DawnWebGPUCache/index +0 -0
  383. package/dist/run-chrome-profile/Default/Download Service/EntryDB/LOCK +0 -0
  384. package/dist/run-chrome-profile/Default/Download Service/EntryDB/LOG +0 -0
  385. package/dist/run-chrome-profile/Default/Download Service/EntryDB/LOG.old +0 -0
  386. package/dist/run-chrome-profile/Default/Extension Rules/000003.log +0 -0
  387. package/dist/run-chrome-profile/Default/Extension Rules/CURRENT +0 -1
  388. package/dist/run-chrome-profile/Default/Extension Rules/LOCK +0 -0
  389. package/dist/run-chrome-profile/Default/Extension Rules/LOG +0 -3
  390. package/dist/run-chrome-profile/Default/Extension Rules/LOG.old +0 -3
  391. package/dist/run-chrome-profile/Default/Extension Rules/MANIFEST-000001 +0 -0
  392. package/dist/run-chrome-profile/Default/Extension Scripts/000003.log +0 -0
  393. package/dist/run-chrome-profile/Default/Extension Scripts/CURRENT +0 -1
  394. package/dist/run-chrome-profile/Default/Extension Scripts/LOCK +0 -0
  395. package/dist/run-chrome-profile/Default/Extension Scripts/LOG +0 -3
  396. package/dist/run-chrome-profile/Default/Extension Scripts/LOG.old +0 -3
  397. package/dist/run-chrome-profile/Default/Extension Scripts/MANIFEST-000001 +0 -0
  398. package/dist/run-chrome-profile/Default/Extension State/000003.log +0 -0
  399. package/dist/run-chrome-profile/Default/Extension State/CURRENT +0 -1
  400. package/dist/run-chrome-profile/Default/Extension State/LOCK +0 -0
  401. package/dist/run-chrome-profile/Default/Extension State/LOG +0 -3
  402. package/dist/run-chrome-profile/Default/Extension State/LOG.old +0 -3
  403. package/dist/run-chrome-profile/Default/Extension State/MANIFEST-000001 +0 -0
  404. package/dist/run-chrome-profile/Default/Favicons +0 -0
  405. package/dist/run-chrome-profile/Default/Favicons-journal +0 -0
  406. package/dist/run-chrome-profile/Default/Feature Engagement Tracker/AvailabilityDB/LOCK +0 -0
  407. package/dist/run-chrome-profile/Default/Feature Engagement Tracker/AvailabilityDB/LOG +0 -0
  408. package/dist/run-chrome-profile/Default/Feature Engagement Tracker/AvailabilityDB/LOG.old +0 -0
  409. package/dist/run-chrome-profile/Default/Feature Engagement Tracker/EventDB/LOCK +0 -0
  410. package/dist/run-chrome-profile/Default/Feature Engagement Tracker/EventDB/LOG +0 -0
  411. package/dist/run-chrome-profile/Default/Feature Engagement Tracker/EventDB/LOG.old +0 -0
  412. package/dist/run-chrome-profile/Default/GPUCache/data_0 +0 -0
  413. package/dist/run-chrome-profile/Default/GPUCache/data_1 +0 -0
  414. package/dist/run-chrome-profile/Default/GPUCache/data_2 +0 -0
  415. package/dist/run-chrome-profile/Default/GPUCache/data_3 +0 -0
  416. package/dist/run-chrome-profile/Default/GPUCache/index +0 -0
  417. package/dist/run-chrome-profile/Default/History +0 -0
  418. package/dist/run-chrome-profile/Default/History-journal +0 -0
  419. package/dist/run-chrome-profile/Default/LOCK +0 -0
  420. package/dist/run-chrome-profile/Default/LOG +0 -0
  421. package/dist/run-chrome-profile/Default/LOG.old +0 -0
  422. package/dist/run-chrome-profile/Default/Local Extension Settings/pbpgonifamlpcahjkkkfelffkegofkgg/000003.log +0 -0
  423. package/dist/run-chrome-profile/Default/Local Extension Settings/pbpgonifamlpcahjkkkfelffkegofkgg/CURRENT +0 -1
  424. package/dist/run-chrome-profile/Default/Local Extension Settings/pbpgonifamlpcahjkkkfelffkegofkgg/LOCK +0 -0
  425. package/dist/run-chrome-profile/Default/Local Extension Settings/pbpgonifamlpcahjkkkfelffkegofkgg/LOG +0 -3
  426. package/dist/run-chrome-profile/Default/Local Extension Settings/pbpgonifamlpcahjkkkfelffkegofkgg/LOG.old +0 -3
  427. package/dist/run-chrome-profile/Default/Local Extension Settings/pbpgonifamlpcahjkkkfelffkegofkgg/MANIFEST-000001 +0 -0
  428. package/dist/run-chrome-profile/Default/Local Storage/leveldb/000003.log +0 -0
  429. package/dist/run-chrome-profile/Default/Local Storage/leveldb/CURRENT +0 -1
  430. package/dist/run-chrome-profile/Default/Local Storage/leveldb/LOCK +0 -0
  431. package/dist/run-chrome-profile/Default/Local Storage/leveldb/LOG +0 -3
  432. package/dist/run-chrome-profile/Default/Local Storage/leveldb/LOG.old +0 -3
  433. package/dist/run-chrome-profile/Default/Local Storage/leveldb/MANIFEST-000001 +0 -0
  434. package/dist/run-chrome-profile/Default/Login Data +0 -0
  435. package/dist/run-chrome-profile/Default/Login Data For Account +0 -0
  436. package/dist/run-chrome-profile/Default/Login Data For Account-journal +0 -0
  437. package/dist/run-chrome-profile/Default/Login Data-journal +0 -0
  438. package/dist/run-chrome-profile/Default/Network Action Predictor +0 -0
  439. package/dist/run-chrome-profile/Default/Network Action Predictor-journal +0 -0
  440. package/dist/run-chrome-profile/Default/Network Persistent State +0 -1
  441. package/dist/run-chrome-profile/Default/PersistentOriginTrials/LOCK +0 -0
  442. package/dist/run-chrome-profile/Default/PersistentOriginTrials/LOG +0 -0
  443. package/dist/run-chrome-profile/Default/PersistentOriginTrials/LOG.old +0 -0
  444. package/dist/run-chrome-profile/Default/Platform Notifications/000003.log +0 -0
  445. package/dist/run-chrome-profile/Default/Platform Notifications/CURRENT +0 -1
  446. package/dist/run-chrome-profile/Default/Platform Notifications/LOCK +0 -0
  447. package/dist/run-chrome-profile/Default/Platform Notifications/LOG +0 -3
  448. package/dist/run-chrome-profile/Default/Platform Notifications/LOG.old +0 -3
  449. package/dist/run-chrome-profile/Default/Platform Notifications/MANIFEST-000001 +0 -0
  450. package/dist/run-chrome-profile/Default/Preferences +0 -1
  451. package/dist/run-chrome-profile/Default/PreferredApps +0 -1
  452. package/dist/run-chrome-profile/Default/README +0 -1
  453. package/dist/run-chrome-profile/Default/Reporting and NEL +0 -0
  454. package/dist/run-chrome-profile/Default/Reporting and NEL-journal +0 -0
  455. package/dist/run-chrome-profile/Default/Safe Browsing Cookies +0 -0
  456. package/dist/run-chrome-profile/Default/Safe Browsing Cookies-journal +0 -0
  457. package/dist/run-chrome-profile/Default/Secure Preferences +0 -1
  458. package/dist/run-chrome-profile/Default/Segmentation Platform/SegmentInfoDB/LOCK +0 -0
  459. package/dist/run-chrome-profile/Default/Segmentation Platform/SegmentInfoDB/LOG +0 -0
  460. package/dist/run-chrome-profile/Default/Segmentation Platform/SegmentInfoDB/LOG.old +0 -0
  461. package/dist/run-chrome-profile/Default/Segmentation Platform/SignalDB/LOCK +0 -0
  462. package/dist/run-chrome-profile/Default/Segmentation Platform/SignalDB/LOG +0 -0
  463. package/dist/run-chrome-profile/Default/Segmentation Platform/SignalDB/LOG.old +0 -0
  464. package/dist/run-chrome-profile/Default/Segmentation Platform/SignalStorageConfigDB/LOCK +0 -0
  465. package/dist/run-chrome-profile/Default/Segmentation Platform/SignalStorageConfigDB/LOG +0 -0
  466. package/dist/run-chrome-profile/Default/Segmentation Platform/SignalStorageConfigDB/LOG.old +0 -0
  467. package/dist/run-chrome-profile/Default/Service Worker/Database/000003.log +0 -0
  468. package/dist/run-chrome-profile/Default/Service Worker/Database/CURRENT +0 -1
  469. package/dist/run-chrome-profile/Default/Service Worker/Database/LOCK +0 -0
  470. package/dist/run-chrome-profile/Default/Service Worker/Database/LOG +0 -3
  471. package/dist/run-chrome-profile/Default/Service Worker/Database/LOG.old +0 -3
  472. package/dist/run-chrome-profile/Default/Service Worker/Database/MANIFEST-000001 +0 -0
  473. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/013888a1cda32b90_0 +0 -0
  474. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/013888a1cda32b90_1 +0 -0
  475. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/4cb013792b196a35_0 +0 -0
  476. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/7b4fd8111178d5b1_0 +0 -0
  477. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/7b4fd8111178d5b1_1 +0 -0
  478. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/ba23d8ecda68de77_0 +0 -0
  479. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/d0757ff92c7cde0a_0 +0 -0
  480. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/d0757ff92c7cde0a_1 +0 -0
  481. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/f1cdccba37924bda_0 +0 -0
  482. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/index +0 -0
  483. package/dist/run-chrome-profile/Default/Service Worker/ScriptCache/index-dir/the-real-index +0 -0
  484. package/dist/run-chrome-profile/Default/Session Storage/000003.log +0 -0
  485. package/dist/run-chrome-profile/Default/Session Storage/CURRENT +0 -1
  486. package/dist/run-chrome-profile/Default/Session Storage/LOCK +0 -0
  487. package/dist/run-chrome-profile/Default/Session Storage/LOG +0 -3
  488. package/dist/run-chrome-profile/Default/Session Storage/LOG.old +0 -3
  489. package/dist/run-chrome-profile/Default/Session Storage/MANIFEST-000001 +0 -0
  490. package/dist/run-chrome-profile/Default/Sessions/Session_13388296523755223 +0 -0
  491. package/dist/run-chrome-profile/Default/Sessions/Session_13388296533026691 +0 -0
  492. package/dist/run-chrome-profile/Default/Sessions/Tabs_13388296523963369 +0 -0
  493. package/dist/run-chrome-profile/Default/Sessions/Tabs_13388296533217699 +0 -0
  494. package/dist/run-chrome-profile/Default/Shared Dictionary/cache/index +0 -0
  495. package/dist/run-chrome-profile/Default/Shared Dictionary/cache/index-dir/the-real-index +0 -0
  496. package/dist/run-chrome-profile/Default/Shared Dictionary/db +0 -0
  497. package/dist/run-chrome-profile/Default/Shared Dictionary/db-journal +0 -0
  498. package/dist/run-chrome-profile/Default/SharedStorage +0 -0
  499. package/dist/run-chrome-profile/Default/Shortcuts +0 -0
  500. package/dist/run-chrome-profile/Default/Shortcuts-journal +0 -0
  501. package/dist/run-chrome-profile/Default/Site Characteristics Database/000003.log +0 -0
  502. package/dist/run-chrome-profile/Default/Site Characteristics Database/CURRENT +0 -1
  503. package/dist/run-chrome-profile/Default/Site Characteristics Database/LOCK +0 -0
  504. package/dist/run-chrome-profile/Default/Site Characteristics Database/LOG +0 -3
  505. package/dist/run-chrome-profile/Default/Site Characteristics Database/LOG.old +0 -3
  506. package/dist/run-chrome-profile/Default/Site Characteristics Database/MANIFEST-000001 +0 -0
  507. package/dist/run-chrome-profile/Default/Sync Data/LevelDB/000003.log +0 -0
  508. package/dist/run-chrome-profile/Default/Sync Data/LevelDB/CURRENT +0 -1
  509. package/dist/run-chrome-profile/Default/Sync Data/LevelDB/LOCK +0 -0
  510. package/dist/run-chrome-profile/Default/Sync Data/LevelDB/LOG +0 -3
  511. package/dist/run-chrome-profile/Default/Sync Data/LevelDB/LOG.old +0 -3
  512. package/dist/run-chrome-profile/Default/Sync Data/LevelDB/MANIFEST-000001 +0 -0
  513. package/dist/run-chrome-profile/Default/Top Sites +0 -0
  514. package/dist/run-chrome-profile/Default/Top Sites-journal +0 -0
  515. package/dist/run-chrome-profile/Default/TransportSecurity +0 -1
  516. package/dist/run-chrome-profile/Default/Trust Tokens +0 -0
  517. package/dist/run-chrome-profile/Default/Trust Tokens-journal +0 -0
  518. package/dist/run-chrome-profile/Default/Visited Links +0 -0
  519. package/dist/run-chrome-profile/Default/Web Data +0 -0
  520. package/dist/run-chrome-profile/Default/Web Data-journal +0 -0
  521. package/dist/run-chrome-profile/Default/WebStorage/QuotaManager +0 -0
  522. package/dist/run-chrome-profile/Default/WebStorage/QuotaManager-journal +0 -0
  523. package/dist/run-chrome-profile/Default/chrome_cart_db/LOCK +0 -0
  524. package/dist/run-chrome-profile/Default/chrome_cart_db/LOG +0 -0
  525. package/dist/run-chrome-profile/Default/chrome_cart_db/LOG.old +0 -0
  526. package/dist/run-chrome-profile/Default/commerce_subscription_db/LOCK +0 -0
  527. package/dist/run-chrome-profile/Default/commerce_subscription_db/LOG +0 -0
  528. package/dist/run-chrome-profile/Default/commerce_subscription_db/LOG.old +0 -0
  529. package/dist/run-chrome-profile/Default/discounts_db/LOCK +0 -0
  530. package/dist/run-chrome-profile/Default/discounts_db/LOG +0 -0
  531. package/dist/run-chrome-profile/Default/discounts_db/LOG.old +0 -0
  532. package/dist/run-chrome-profile/Default/heavy_ad_intervention_opt_out.db +0 -0
  533. package/dist/run-chrome-profile/Default/heavy_ad_intervention_opt_out.db-journal +0 -0
  534. package/dist/run-chrome-profile/Default/optimization_guide_hint_cache_store/LOCK +0 -0
  535. package/dist/run-chrome-profile/Default/optimization_guide_hint_cache_store/LOG +0 -0
  536. package/dist/run-chrome-profile/Default/optimization_guide_hint_cache_store/LOG.old +0 -0
  537. package/dist/run-chrome-profile/Default/parcel_tracking_db/LOCK +0 -0
  538. package/dist/run-chrome-profile/Default/parcel_tracking_db/LOG +0 -0
  539. package/dist/run-chrome-profile/Default/parcel_tracking_db/LOG.old +0 -0
  540. package/dist/run-chrome-profile/Default/passkey_enclave_state +0 -1
  541. package/dist/run-chrome-profile/Default/shared_proto_db/000003.log +0 -0
  542. package/dist/run-chrome-profile/Default/shared_proto_db/CURRENT +0 -1
  543. package/dist/run-chrome-profile/Default/shared_proto_db/LOCK +0 -0
  544. package/dist/run-chrome-profile/Default/shared_proto_db/LOG +0 -3
  545. package/dist/run-chrome-profile/Default/shared_proto_db/LOG.old +0 -3
  546. package/dist/run-chrome-profile/Default/shared_proto_db/MANIFEST-000001 +0 -0
  547. package/dist/run-chrome-profile/Default/shared_proto_db/metadata/000003.log +0 -0
  548. package/dist/run-chrome-profile/Default/shared_proto_db/metadata/CURRENT +0 -1
  549. package/dist/run-chrome-profile/Default/shared_proto_db/metadata/LOCK +0 -0
  550. package/dist/run-chrome-profile/Default/shared_proto_db/metadata/LOG +0 -3
  551. package/dist/run-chrome-profile/Default/shared_proto_db/metadata/LOG.old +0 -3
  552. package/dist/run-chrome-profile/Default/shared_proto_db/metadata/MANIFEST-000001 +0 -0
  553. package/dist/run-chrome-profile/Default/trusted_vault.pb +0 -2
  554. package/dist/run-chrome-profile/GrShaderCache/data_0 +0 -0
  555. package/dist/run-chrome-profile/GrShaderCache/data_1 +0 -0
  556. package/dist/run-chrome-profile/GrShaderCache/data_2 +0 -0
  557. package/dist/run-chrome-profile/GrShaderCache/data_3 +0 -0
  558. package/dist/run-chrome-profile/GrShaderCache/index +0 -0
  559. package/dist/run-chrome-profile/GraphiteDawnCache/data_0 +0 -0
  560. package/dist/run-chrome-profile/GraphiteDawnCache/data_1 +0 -0
  561. package/dist/run-chrome-profile/GraphiteDawnCache/data_2 +0 -0
  562. package/dist/run-chrome-profile/GraphiteDawnCache/data_3 +0 -0
  563. package/dist/run-chrome-profile/GraphiteDawnCache/f_000001 +0 -0
  564. package/dist/run-chrome-profile/GraphiteDawnCache/f_000002 +0 -0
  565. package/dist/run-chrome-profile/GraphiteDawnCache/f_000003 +0 -0
  566. package/dist/run-chrome-profile/GraphiteDawnCache/f_000004 +0 -0
  567. package/dist/run-chrome-profile/GraphiteDawnCache/index +0 -0
  568. package/dist/run-chrome-profile/Last Version +0 -1
  569. package/dist/run-chrome-profile/Local State +0 -1
  570. package/dist/run-chrome-profile/ShaderCache/data_0 +0 -0
  571. package/dist/run-chrome-profile/ShaderCache/data_1 +0 -0
  572. package/dist/run-chrome-profile/ShaderCache/data_2 +0 -0
  573. package/dist/run-chrome-profile/ShaderCache/data_3 +0 -0
  574. package/dist/run-chrome-profile/ShaderCache/index +0 -0
  575. package/dist/run-chrome-profile/Variations +0 -1
  576. package/dist/run-chrome-profile/first_party_sets.db +0 -0
  577. package/dist/run-chrome-profile/first_party_sets.db-journal +0 -0
  578. package/dist/run-chrome-profile/optimization_guide_model_store/13/E6DC4029A1E4B4C1/3CF18F0F16C8CE09/model-info.pb +0 -1
  579. package/dist/run-chrome-profile/optimization_guide_model_store/13/E6DC4029A1E4B4C1/3CF18F0F16C8CE09/model.tflite +0 -0
  580. package/dist/run-chrome-profile/optimization_guide_model_store/15/E6DC4029A1E4B4C1/D5BCEC4E5AAF74EA/VERSION.txt +0 -4
  581. package/dist/run-chrome-profile/optimization_guide_model_store/15/E6DC4029A1E4B4C1/D5BCEC4E5AAF74EA/model-info.pb +0 -0
  582. package/dist/run-chrome-profile/optimization_guide_model_store/15/E6DC4029A1E4B4C1/D5BCEC4E5AAF74EA/model.tflite +0 -0
  583. package/dist/run-chrome-profile/optimization_guide_model_store/15/E6DC4029A1E4B4C1/D5BCEC4E5AAF74EA/override_list.pb.gz +0 -0
  584. package/dist/run-chrome-profile/optimization_guide_model_store/2/E6DC4029A1E4B4C1/52963069BD02697B/model-info.pb +0 -1
  585. package/dist/run-chrome-profile/optimization_guide_model_store/2/E6DC4029A1E4B4C1/52963069BD02697B/model.tflite +0 -0
  586. package/dist/run-chrome-profile/optimization_guide_model_store/20/E6DC4029A1E4B4C1/AEDAEAFE1BA40A26/model-info.pb +0 -0
  587. package/dist/run-chrome-profile/optimization_guide_model_store/20/E6DC4029A1E4B4C1/AEDAEAFE1BA40A26/model.tflite +0 -0
  588. package/dist/run-chrome-profile/optimization_guide_model_store/24/E6DC4029A1E4B4C1/7C893FFC02F661B8/enus_denylist_encoded_241007.txt +0 -580
  589. package/dist/run-chrome-profile/optimization_guide_model_store/24/E6DC4029A1E4B4C1/7C893FFC02F661B8/model-info.pb +0 -5
  590. package/dist/run-chrome-profile/optimization_guide_model_store/24/E6DC4029A1E4B4C1/7C893FFC02F661B8/model.tflite +0 -0
  591. package/dist/run-chrome-profile/optimization_guide_model_store/24/E6DC4029A1E4B4C1/7C893FFC02F661B8/vocab_en-us.txt +0 -303
  592. package/dist/run-chrome-profile/optimization_guide_model_store/25/E6DC4029A1E4B4C1/F87CF299C0E14D75/model-info.pb +0 -0
  593. package/dist/run-chrome-profile/optimization_guide_model_store/25/E6DC4029A1E4B4C1/F87CF299C0E14D75/model.tflite +0 -0
  594. package/dist/run-chrome-profile/optimization_guide_model_store/25/E6DC4029A1E4B4C1/F87CF299C0E14D75/visual_model_desktop.tflite +0 -0
  595. package/dist/run-chrome-profile/optimization_guide_model_store/26/E6DC4029A1E4B4C1/92C138FC1F6BC7A5/model-info.pb +0 -0
  596. package/dist/run-chrome-profile/optimization_guide_model_store/26/E6DC4029A1E4B4C1/92C138FC1F6BC7A5/model.tflite +0 -0
  597. package/dist/run-chrome-profile/optimization_guide_model_store/45/E6DC4029A1E4B4C1/99FA23F9C3B6B1E9/model-info.pb +0 -0
  598. package/dist/run-chrome-profile/optimization_guide_model_store/45/E6DC4029A1E4B4C1/99FA23F9C3B6B1E9/model.tflite +0 -0
  599. package/dist/run-chrome-profile/optimization_guide_model_store/9/E6DC4029A1E4B4C1/201FE93993560CC9/model-info.pb +0 -0
  600. package/dist/run-chrome-profile/optimization_guide_model_store/9/E6DC4029A1E4B4C1/201FE93993560CC9/model.tflite +0 -0
  601. package/dist/run-chrome-profile/segmentation_platform/ukm_db +0 -0
  602. package/dist/run-chrome-profile/segmentation_platform/ukm_db-wal +0 -0
  603. package/dist/tailwind.config.js +0 -25
  604. /package/dist/{minimum-script-file.mjs → webpack/plugin-extension/feature-scripts/steps/minimum-content-file.d.ts} +0 -0
  605. /package/dist/{run-chrome-profile/Default/Affiliation Database-journal → webpack/plugin-reload/steps/setup-chromium-reload-client/minimum-chromium-file.d.ts} +0 -0
  606. /package/dist/{run-chrome-profile/Default/AutofillStrikeDatabase/LOCK → webpack/plugin-reload/steps/setup-firefox-reload-client/minimum-firefox-file.d.ts} +0 -0
@@ -1,580 +0,0 @@
1
- YWN0aXZlIHNob290ZXI=
2
- YW5hbGNsaXB6
3
- YW5hbGRlc3RydWN0aW9u
4
- YW5hbGRvbGxz
5
- YW5hbGVzY29ydHM=
6
- YW5hbGxpY2tmZXN0
7
- YW5hbHBpY3M=
8
- YW5hbHJhcGlzdA==
9
- YW5hbHNob2NrZXI=
10
- YW5hbHR1YmU=
11
- YXJzZWhvbGU=
12
- YXNoZW1hbHR1YmU=
13
- YXNob2xl
14
- YXNpYW5zY2hsb25n
15
- YXNz
16
- YXp6b3ZlcmxvYWQ=
17
- YmFkdGVlbmNhbQ==
18
- YmFnbmJyb3M=
19
- YmFsbGJ1c3Rpbmd0dWJl
20
- YmFuZ2Jyb3M=
21
- YmFuZ2J1cw==
22
- YmFuZ2VkbWFtYXM=
23
- YmFyZWJhY2s=
24
- YmJ3Ym9vYnM=
25
- YmVhc3RpYWxpdHk0dQ==
26
- YmVlZ3R1YmU=
27
- YmVlbXR1YmU=
28
- YmlhdGNo
29
- YmlnYmJ3Ym9vdHk=
30
- YmlnYm9vYmRyZWFtcw==
31
- YmlnYm9vYmZpbG1z
32
- YmlnYm9vYmdlbQ==
33
- YmlnYm9vYnNqdWdncw==
34
- YmlnYm9vdHl0dWJl
35
- Ymlnd2V0YnV0dA==
36
- Ymlnd2V0dGJ1dHRz
37
- YmlsYXRpbm1lbg==
38
- YmlsYXRpbm9tZW4=
39
- Yml0Y2g=
40
- YmxhY2tib29icw==
41
- YmxhY2tib290eWJlYXV0aWVz
42
- YmxhY2tib3lhZGRpY3Rpb256
43
- Ymxvd2pvYg==
44
- Ymx1bXBraW4=
45
- Ym9mZg==
46
- Ym9uZGFnZXR1YmU=
47
- Ym9uZXJ0dWJl
48
- YnJhemVy
49
- YnViYmxlYnV0dGJvbmFuemE=
50
- YnViYmxlYnV0dG9yZ3k=
51
- YnViYmxlYnV0dHNnYWxvcmU=
52
- YnVrYWtl
53
- YnVrYWtrZQ==
54
- YnVra2FrZQ==
55
- YnVtZmlzdA==
56
- YnVuZ2hvbGU=
57
- YnVubnl0ZWVu
58
- YnVzdHllYm9ueXBpY3M=
59
- YnVzdHludWRlYmFiZXM=
60
- YnV0dGhvbGVz
61
- YnV0dGh1cnQ=
62
- YnV0dHNla3M=
63
- Y2FjdHViZQ==
64
- Y2FtYm95c3R1YmU=
65
- Y2FudmFz
66
- Y2FyYW1lbHR1YmU=
67
- Y2ZubWNvbnRlbnQ=
68
- Y2ZubWhvdA==
69
- Y2ZubXRvb2I=
70
- Y2hhdHVyYmF0ZQ==
71
- Y2hhdHVyYmF0aW5n
72
- Y2hhdHVyYnV0ZQ==
73
- Y2hpbms=
74
- Y2hvYWQ=
75
- Y2hvZGU=
76
- Y2hvbG90dWJl
77
- Y2h1YmJ5b3JnaWVz
78
- Y2xpdA==
79
- Y29jaw==
80
- Y29qb25lcw==
81
- Y29udHJpYnV0
82
- Y29vY2g=
83
- Y29vbGll
84
- Y29vbg==
85
- Y3JhZW1waWU=
86
- Y3JlYW1wZWlk
87
- Y3JlYW1waWU=
88
- Y3JlYW1wcGll
89
- Y3JlYW1weQ==
90
- Y3JlZW1waWU=
91
- Y3JlbXBpZQ==
92
- Y3JlcW1waWU=
93
- Y3JpYW1waWU=
94
- Y3JvY290dWJl
95
- Y3Vsbw==
96
- Y3Vt
97
- Y3VubmlsaW5ndXM=
98
- Y3VudA==
99
- ZGFnbw==
100
- ZGFtbWl0
101
- ZGFya2llcw==
102
- ZGVlcGluc2lkZWJveXM=
103
- ZGVlcHRocm9hdA==
104
- ZGVmbG9yYXRpb24=
105
- ZGljaw==
106
- ZG9nZ2luZw==
107
- ZG9uYXQ=
108
- ZG91YmxldGVhbWVkdGVlbnM=
109
- ZG91Y2hl
110
- ZHlrZQ==
111
- ZWJvbnljbGlwc3M=
112
- ZWxlY3Q=
113
- ZWxlcGFudHViZQ==
114
- ZWxlcGhhbnR0dWJl
115
- ZWxlcGhhbnR1YmU=
116
- ZmFjZXNpdA==
117
- ZmFn
118
- ZmVsY2g=
119
- ZmVsbGF0ZQ==
120
- ZmVsbGF0aW8=
121
- ZmVsbGF0cml4
122
- ZmVtZG9t
123
- ZmlnZ2luZw==
124
- ZmluZ2VyYmFuZw==
125
- Zmlyc3RhbmFscXVlc3Q=
126
- ZmlzdGVk
127
- ZmlzdGZsdXNo
128
- ZmlzdGluZw==
129
- Zm9vdGpvYg==
130
- Zm9ybmh1Yg==
131
- ZnJlYWtzb2Zib29icw==
132
- ZnJlZWFuYWw=
133
- ZnJlZXRlZW50dWJl
134
- ZnJlZXhtb2Jp
135
- ZnVjaw==
136
- ZnV0YW5hcmk=
137
- Z2FnZ2Vycw==
138
- Z2FuYmFuZ2Vk
139
- Z2FuYmFuZ2Vycw==
140
- Z2FuZ2JhZ2Vk
141
- Z2FuZ2Jhbmc=
142
- Z2FuZ3JhcGU=
143
- Z2F5IGFjdGlvbg==
144
- Z2F5IHNjZW5l
145
- Z2F5IHRocmVlc29tZQ==
146
- Z2F5YXNpYW5waXNz
147
- Z2F5dGFyZA==
148
- Z2F5d2Fk
149
- Z2VyYmlsaW5n
150
- Z2hldHRvYm9vdHl0dWJl
151
- Z2hldHRvdHViZQ==
152
- Z2lsZg==
153
- Z2xvYmFsIHdhcm1pbmcgaXMgYSBob2F4
154
- Z2xvcnlob2xlc2VjcmV0cw==
155
- Z2xvcnlob2xlc3dhbGxvdw==
156
- Z2xvcnlob2xpbmc=
157
- Z29hdHNl
158
- Z29kZGFtbg==
159
- Z29kc2FydG51ZGVz
160
- Z29sZGVuIHNob3dlcg==
161
- Z29vY2g=
162
- Z29vaw==
163
- Z295
164
- aGFuZGpvYg==
165
- aGFwcHl0dWdnaW5n
166
- aGVudGFp
167
- aGVybQ==
168
- aG9lcg==
169
- aG9ndGllZA==
170
- aG9tb3M=
171
- aG9vZHR1YmU=
172
- aG9va2Vycw==
173
- aG9ybmJ1bm55
174
- aG9ybmluZXNz
175
- aG9ybnludWRpc3Rz
176
- aG90YmxhY2t2aWRz
177
- aG90Z2F5ZmxpY2tz
178
- aG90Z2F5bGlzdA==
179
- aG90Z2F5dHViZQ==
180
- aG90a2lua3lqbw==
181
- aG90bW9tc2Jhbmd0ZWVucw==
182
- aG90bnVkZWNhbXM=
183
- aHVnZWJvb2JzaGFyZGNvcmU=
184
- aWthbnRvdA==
185
- aW5jZXN0dHViZXo=
186
- aW5jZXN0dHY=
187
- aW5jZXN0dmlk
188
- aW5kaWFuYm9vYnN0dWJl
189
- aW5kaWFucG9ydmlkZW9z
190
- aW5kaWFucHJvbnZlZGlv
191
- aW5kaWFucHJvbnZpZGVvcw==
192
- aW5kaWFuc3hlY29t
193
- aW5kaWFueGNsaXBz
194
- aW5kaWVudWRlcw==
195
- aW5qdW4=
196
- aW50byBibGFjayBndXlz
197
- aXl1dGFudHViZQ==
198
- amFw
199
- amV3dGFyZA==
200
- amlnYWJvbw==
201
- amlzbQ==
202
- amlzc29t
203
- aml6aHV0
204
- aml6eg==
205
- am9ja3NwYW5r
206
- am91amlpeg==
207
- am91amlzcw==
208
- am91aml6eA==
209
- am91anp6
210
- am91eWl6eg==
211
- a2Vlem1vdmlleg==
212
- a2lrZQ==
213
- bGFkeWJveQ==
214
- bGFwIGRhbmNl
215
- bGVhZA==
216
- bGVzYmlhbiBhY3Rpb24=
217
- bGVzYmlhbiBiYWJlcw==
218
- bGVzYmlhbiBnaXJscw==
219
- bGVzYmlhbiBzY2VuZQ==
220
- bGVzYmlhbiB0ZWVucw==
221
- bGVzYmlhbiB0aHJlZXNvbWU=
222
- bGVzYm8=
223
- bGV0aGFsaGFyZGNvcmU=
224
- bGV6em8=
225
- bGliZXJ0YXJk
226
- bGlidGFyZA==
227
- bGl0ZXJvcmljYQ==
228
- bG9ybmh1Yg==
229
- bG9zZQ==
230
- bG9zaW5n
231
- bG9zcw==
232
- bG9zdA==
233
- bWF0dXJldHViZQ==
234
- bWF4Z2F5dHViZQ==
235
- bWF4aW11c3R1YmU=
236
- bWF6ZXR1YmU=
237
- bWVhdHNwaW4=
238
- bWVnYWJvb2JzZ2lybHM=
239
- bWVsb25zdHViZQ==
240
- bWlsZg==
241
- bWluZ2U=
242
- bW9iaWxleHNoYXJl
243
- bW9mb3M=
244
- bW9tbXlnb3Rib29icw==
245
- bW9uZ29sb2lk
246
- bXVuZ2luZw==
247
- bXlyZXRyb3R1YmU=
248
- bmFpamFub3Rl
249
- bmFrZWRtYXR1cmVtb21z
250
- bmFrZWRwYXBpcw==
251
- bmVncmk=
252
- bmVncm8=
253
- bmVyZG51ZGVz
254
- bmV3YmllbnVkZQ==
255
- bmV3ZHVkZW51ZGVz
256
- bmlnZ2E=
257
- bmlnZ2Vy
258
- bmlnZ3Jlc3M=
259
- bmlnZ3Vo
260
- bmlnbGV0
261
- bml0Y2hpZQ==
262
- bm9va3k=
263
- bm92b2Jvb2Jz
264
- bnNmcw==
265
- bnViaWxlcw==
266
- bnViaWxldmlkcw==
267
- bnVkZWhvdGFuZ2Vscw==
268
- bnVkZWluZGlhZ2lybHNjbHVi
269
- bnVkZWluZGlhbmdpcmxz
270
- bnVkZXNwdXJp
271
- bnVkZXRlZW5ib3lz
272
- bnVkZXR1YmU=
273
- bnVkZXZpc3Rh
274
- bnVyZ2xlc255bXBocw==
275
- bnV2aWQ=
276
- b2xkbWFuYm95dHViZQ==
277
- b25pb25ib290eXR1YmU=
278
- b25seWJsYWNrdHViZQ==
279
- b25seWZhbg==
280
- b25seW1vbXR1YmU=
281
- b29ybmh1Yg==
282
- b3JhbA==
283
- b3JnYXNtdHViZQ==
284
- cGFraQ==
285
- cGF3Zw==
286
- cGVrcGVrdHViZQ==
287
- cGVuaXM=
288
- cGVydmNsaXBz
289
- cGhhdGJsYWNrZnJlYWtz
290
- cGhhdGJvb3R5aG9lcw==
291
- cGhvbmViYW5r
292
- cGhvcm5odWI=
293
- cGlja2FidXR0
294
- cGlja2FuaW5ueQ==
295
- cGluYXlib29iaWVz
296
- cGluYXl2aWRlb3NjYW5kYWw=
297
- cGlub3lob3RjYW16
298
- cGlybmh1Yg==
299
- cGlybnR1YmU=
300
- cGlzaW5n
301
- cGlzc2FudA==
302
- cGlzc2Vy
303
- cGlzc2hvbGU=
304
- cGlzc2h1bnRlcg==
305
- cGxlYXNlYmFuZ215d2lmZQ==
306
- cG9hcm5odWI=
307
- cG9lbmh1Yg==
308
- cG9lbnR1YmU=
309
- cG9uaHVi
310
- cG9ub2h1Yg==
311
- cG9ucmh1Yg==
312
- cG9ucmh1ZA==
313
- cG9ucm5odWI=
314
- cG9ucnR1YmU=
315
- cG9vZnRhaA==
316
- cG9vbg==
317
- cG9vcGVlZ2lybA==
318
- cG9yYW5odXA=
319
- cG9yYmh1Yg==
320
- cG9yYnR1YmU=
321
- cG9yZ2llcw==
322
- cG9yaGh1Yg==
323
- cG9yaG5odWI=
324
- cG9yaG51Yg==
325
- cG9yaHVi
326
- cG9ybWh1Yg==
327
- cG9ybXR1YmU=
328
- cG9ybg==
329
- cG9yb25veG8=
330
- cG9ycmh1Yg==
331
- cG9ycm5odWI=
332
- cG9ycm50dWJl
333
- cG9ydHViZQ==
334
- cG90bmh1Yg==
335
- cG90bnR1YmU=
336
- cG91cm5odWI=
337
- cG91cm50dWJl
338
- cHBybm94bw==
339
- cHBybnR1YmU=
340
- cHJpdmF0ZXZveWV1cg==
341
- cHJuaHVi
342
- cHJub2h1Yg==
343
- cHJvbmhvYg==
344
- cHJvbmh1Yg==
345
- cHJvbmh1ZA==
346
- cHJvbm1hemFuZXQ=
347
- cHJvbm94bw==
348
- cHJvbnJvdGljYQ==
349
- cHJvbnJvdGlrYQ==
350
- cHJvbnR1YmU=
351
- cHJwbmh1Yg==
352
- cHJ1bmh1Yg==
353
- cHVuaXNodHViZQ==
354
- cHVvcm5odWI=
355
- cHVybmh1Yg==
356
- cHVybm9odWI=
357
- cHVybnR1YmU=
358
- cHVzcw==
359
- cXVlZXJob2xl
360
- cmFkaWNhbCBpc2xhbQ==
361
- cmFnaGVhZA==
362
- cmF3YmxhY2t2aWRlb3M=
363
- cmVhbGJsYWNrZXhwb3NlZA==
364
- cmVhbGJsYWNrZmF0dGllcw==
365
- cmVidHViZQ==
366
- cmVidHVkZQ==
367
- cmVkYnR1YmU=
368
- cmVkZHR1YmU=
369
- cmVkZXR1YmU=
370
- cmVkaG90dHViZQ==
371
- cmVkaHViZQ==
372
- cmVkdGJl
373
- cmVkdGJ1ZQ==
374
- cmVkdGV1YmU=
375
- cmVkdGh1YmU=
376
- cmVkdGliZQ==
377
- cmVkdGl1Yg==
378
- cmVkdGpiZQ==
379
- cmVkdG9iZQ==
380
- cmVkdG91YmU=
381
- cmVkdHJ1YmU=
382
- cmVkdHR1YmU=
383
- cmVkdHVi
384
- cmVkdHVkZQ==
385
- cmVkdHVl
386
- cmVkdHVoZQ==
387
- cmVkdHVuYmU=
388
- cmVkdHVwZQ==
389
- cmVkdHV1YmU=
390
- cmVkdHV2ZQ==
391
- cmVkdHliZQ==
392
- cmVkdHl1Yg==
393
- cmVkdXRiZQ==
394
- cmVkeXR1YmU=
395
- cmVkeXViZQ==
396
- cmV0YXJk
397
- cmV0ZHR1YmU=
398
- cmV0dHViZQ==
399
- cmln
400
- cmltam9i
401
- cm9rZXR0dWJl
402
- cnJkdHViZQ==
403
- c2Nob29sZ2lybGludGVybmFs
404
- c2VsZnN1Y2s=
405
- c2V4
406
- c2hhcnQ=
407
- c2hhdA==
408
- c2hlJ3MgYSB2aXJnaW4=
409
- c2hlbWFpbGU=
410
- c2hlbWFsZQ==
411
- c2hpdA==
412
- c2l0IG9uIG15IGZhY2U=
413
- c2l0IG9uIG15IGxhcA==
414
- c2l0IG9uIHlvdXIgZmFjZQ==
415
- c2l0IG9uIHlvdXIgbGFw
416
- c2thbms=
417
- c2xvdXRsb2Fk
418
- c2x1ZGxvYWQ=
419
- c2x1bG9hZA==
420
- c2x1dA==
421
- c211dHR5
422
- c29mdGNvcmV0dWJl
423
- c3BhbmdiYW5n
424
- c3BhbmtiYW5n
425
- c3Bhbmt3ZXJp
426
- c3BpYw==
427
- c3Bsb29nZQ==
428
- c3Bsb29naW5n
429
- c3Bvb2dl
430
- c3Bvb2dpbmc=
431
- c3Bvb2s=
432
- c3B1bmtlZA==
433
- c3B1bmtpbmc=
434
- c3B1bmttb3V0aA==
435
- c3B1bmt3b3J0aHk=
436
- c3F1aXJ0ZXI=
437
- c3F1aXJ0aW5hdG9y
438
- c3VwZXJocXByb24=
439
- c3dhbGxvd3NxdWlydA==
440
- dGVlbnB1c3k=
441
- dGhvdA==
442
- dGhyZWVzb21lcw==
443
- dGhyb2F0aW5n
444
- dGlhdmF0dWJl
445
- dGluYWZsaXg=
446
- dGl0
447
- dG5hZml4
448
- dG5hZmxpeA==
449
- dG9uaWNtb3ZpZXM=
450
- dG9wbnVkZWNlbGVi
451
- dHJhZGViYW5naW5n
452
- dHJhbm5pZQ==
453
- dHJhbm55
454
- dHJpa2VwYXRyb2xjb20=
455
- dHNiaWdib290eWJpYW5jYQ==
456
- dHN1cGE=
457
- dHViZWFkdWx0bW92aWVz
458
- dHViZWNhbWdpcmxz
459
- dHViZWdhbG8=
460
- dHViZWdhbHM=
461
- dHViZWtpdHR5
462
- dHViZXBsYWVzdXJl
463
- dHViZXBsZWFzdXJl
464
- dHViZXRyb29wZXI=
465
- dHViZXdvbGY=
466
- dHViZXhjbGlwcw==
467
- dHViZXphdXI=
468
- dHdhdA==
469
- dW5nbG9yeWhvbGU=
470
- dXBza2lydA==
471
- dmFn
472
- dmlkZW9zem9vZmlsaWE=
473
- dm9sdW50ZWVy
474
- dm90ZQ==
475
- dm90aW5n
476
- dm95ZXVyYmFuaw==
477
- dm95ZXVyY2xvdWRz
478
- dm95ZXVyaGl0
479
- dm95ZXVybW9ua2V5
480
- dm95ZXVycGljcw==
481
- dm95ZXVycnVzc2lhbg==
482
- d2Fuaw==
483
- d2V0YW5kcGlzc3k=
484
- d2V0YmFjaw==
485
- d2hpdGV5
486
- d2hvcmU=
487
- d2hvcmlzaA==
488
- d2lmZWNyYXZlc2JsYWNr
489
- d2lu
490
- d29n
491
- d29u
492
- d29vZnRlcnM=
493
- d29w
494
- d3Rm
495
- eGJpZGVvcw==
496
- eGNoYW1zdGVy
497
- eGNpZGVvcw==
498
- eGdheXN0dWJl
499
- eGdyYW5ueXR1YmU=
500
- eGhhbWFzdGVy
501
- eGhhbWF0ZXI=
502
- eGhhbWR0ZXI=
503
- eGhhbWVhdGVy
504
- eGhhbWVydGVy
505
- eGhhbWVzdGVy
506
- eGhhbW1zdGVy
507
- eGhhbXBzdGVy
508
- eGhhbXNhdGFy
509
- eGhhbXNlcg==
510
- eGhhbXNmZXI=
511
- eGhhbXNtc3Rlcg==
512
- eGhhbXNyZXI=
513
- eGhhbXNydGVy
514
- eGhhbXN0
515
- eGhhbXN5ZXI=
516
- eGhhbXRlcg==
517
- eGhhbXh0ZXI=
518
- eGhhbXp0ZXI=
519
- eGhhcm1lc3Rlcg==
520
- eGhhcm1zdGVy
521
- eGhhc21hc3Rlcg==
522
- eGhhc21lc3Rlcg==
523
- eGhhc21zdGVy
524
- eGhhc210ZXI=
525
- eGhhc3Rlcg==
526
- eGhtYXN0ZXI=
527
- eGhvbXN0ZXI=
528
- eGhzbWFzdGFy
529
- eGhzbXN0ZXI=
530
- eGh1bXN0ZXI=
531
- eG1oYXN0ZXI=
532
- eG14eA==
533
- eG5ueA==
534
- eG54Yw==
535
- eG54ZXJvdGljYQ==
536
- eG54eA==
537
- eHNoYW10ZXI=
538
- eHR1YmU=
539
- eHZpZGVv
540
- eHZpZGVw
541
- eHZpZGlv
542
- eHZpZHM=
543
- eHhubm4=
544
- eHhueA==
545
- eHh4
546
- eWlk
547
- eWlmZnk=
548
- eW9panp6
549
- eW9qanp6
550
- eW9wb3Vybg==
551
- eW9wdW9ybg==
552
- eW91ZGppeg==
553
- eW91aWp6
554
- eW91amlpeg==
555
- eW91amlzcw==
556
- eW91aml6
557
- eW91amppeg==
558
- eW91amp6eg==
559
- eW91anp6
560
- eW91b29ybg==
561
- eW91b3Ju
562
- eW91cGhvcm4=
563
- eW91cGlybg==
564
- eW91cG9hcm4=
565
- eW91cG9lbg==
566
- eW91cG9uZQ==
567
- eW91cG9ucg==
568
- eW91cG9vcm4=
569
- eW91cG9wcm4=
570
- eW91cG9yYg==
571
- eW91cG9ybQ==
572
- eW91cG90bg==
573
- eW91cHBybg==
574
- eW91cHJvbg==
575
- eW91cHJvcm4=
576
- eXVvcG9ybQ==
577
- eXV2dXR1
578
- em9vc2tvbA==
579
- em9vc2tvb2w=
580
- em9vdHViZXg=
@@ -1,5 +0,0 @@
1
- �� 2m
2
- `type.googleapis.com/google.internal.chrome.optimizationguide.v1.OnDeviceTailSuggestModelMetadata
3
- �@:
4
- vocab_en-us.txt:"
5
- enus_denylist_encoded_241007.txt