@browserless.io/browserless 2.2.0-beta-6 → 2.2.0

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 (1313) hide show
  1. package/CHANGELOG.md +21 -2
  2. package/bin/browserless.js +1 -1
  3. package/bin/scaffold/README.md +8 -7
  4. package/build/browserless.js +7 -6
  5. package/build/browsers/chrome.cdp.d.ts +6 -0
  6. package/build/browsers/chrome.cdp.js +6 -0
  7. package/build/browsers/chrome.playwright.d.ts +6 -0
  8. package/build/browsers/chrome.playwright.js +6 -0
  9. package/build/browsers/{cdp-chromium.d.ts → chromium.cdp.d.ts} +3 -2
  10. package/build/browsers/{cdp-chromium.js → chromium.cdp.js} +16 -10
  11. package/build/browsers/{playwright-chromium.d.ts → chromium.playwright.d.ts} +3 -2
  12. package/build/browsers/{playwright-chromium.js → chromium.playwright.js} +6 -5
  13. package/build/browsers/{playwright-firefox.d.ts → firefox.playwright.d.ts} +2 -2
  14. package/build/browsers/{playwright-firefox.js → firefox.playwright.js} +4 -4
  15. package/build/browsers/index.d.ts +20 -10
  16. package/build/browsers/index.js +110 -11
  17. package/build/browsers/{playwright-webkit.d.ts → webkit.playwright.d.ts} +2 -2
  18. package/build/browsers/{playwright-webkit.js → webkit.playwright.js} +4 -4
  19. package/build/data/selectors.json +1 -1
  20. package/build/exports.d.ts +6 -4
  21. package/build/exports.js +6 -4
  22. package/build/http.d.ts +22 -1
  23. package/build/http.js +21 -0
  24. package/build/router.js +19 -3
  25. package/build/routes/{chromium/http/content-post.body.json → chrome/http/content.post.body.json} +8 -8
  26. package/build/routes/chrome/http/content.post.d.ts +7 -0
  27. package/build/routes/chrome/http/content.post.js +6 -0
  28. package/build/routes/chrome/http/download.post.d.ts +7 -0
  29. package/build/routes/chrome/http/download.post.js +6 -0
  30. package/build/routes/chrome/http/function.post.d.ts +7 -0
  31. package/build/routes/chrome/http/function.post.js +6 -0
  32. package/build/routes/chrome/http/json-list.get.d.ts +1 -0
  33. package/build/routes/chrome/http/json-list.get.js +1 -0
  34. package/build/routes/chrome/http/json-new.put.d.ts +1 -0
  35. package/build/routes/chrome/http/json-new.put.js +1 -0
  36. package/build/routes/chrome/http/json-protocol.get.d.ts +1 -0
  37. package/build/routes/chrome/http/json-protocol.get.js +1 -0
  38. package/build/routes/chrome/http/json-version.get.d.ts +1 -0
  39. package/build/routes/chrome/http/json-version.get.js +1 -0
  40. package/build/routes/chrome/http/json-version.get.response.json +44 -0
  41. package/build/routes/{chromium/http/pdf-post.body.json → chrome/http/pdf.post.body.json} +8 -8
  42. package/build/routes/chrome/http/pdf.post.d.ts +7 -0
  43. package/build/routes/chrome/http/pdf.post.js +6 -0
  44. package/build/routes/chrome/http/performance.post.d.ts +7 -0
  45. package/build/routes/chrome/http/performance.post.js +6 -0
  46. package/build/routes/{chromium/http/scrape-post.body.json → chrome/http/scrape.post.body.json} +8 -8
  47. package/build/routes/chrome/http/scrape.post.d.ts +7 -0
  48. package/build/routes/chrome/http/scrape.post.js +6 -0
  49. package/build/routes/{chromium/http/screenshot-post.body.json → chrome/http/screenshot.post.body.json} +8 -8
  50. package/build/routes/chrome/http/screenshot.post.d.ts +7 -0
  51. package/build/routes/chrome/http/screenshot.post.js +6 -0
  52. package/build/routes/chrome/tests/content.spec.js +311 -0
  53. package/build/routes/chrome/tests/download.spec.js +67 -0
  54. package/build/routes/chrome/tests/function.spec.d.ts +1 -0
  55. package/build/routes/chrome/tests/function.spec.js +245 -0
  56. package/build/routes/chrome/tests/json-version.spec.d.ts +1 -0
  57. package/build/routes/chrome/tests/json-version.spec.js +37 -0
  58. package/build/routes/chrome/tests/page-websocket.spec.d.ts +1 -0
  59. package/build/routes/chrome/tests/page-websocket.spec.js +97 -0
  60. package/build/routes/chrome/tests/pdf.spec.d.ts +1 -0
  61. package/build/routes/chrome/tests/pdf.spec.js +333 -0
  62. package/build/routes/chrome/tests/performance.spec.d.ts +1 -0
  63. package/build/routes/chrome/tests/performance.spec.js +124 -0
  64. package/build/routes/chrome/tests/scrape.spec.d.ts +1 -0
  65. package/build/routes/chrome/tests/scrape.spec.js +354 -0
  66. package/build/routes/chrome/tests/screenshot.spec.d.ts +1 -0
  67. package/build/routes/chrome/tests/screenshot.spec.js +339 -0
  68. package/build/routes/chrome/tests/websocket.spec.d.ts +1 -0
  69. package/build/routes/chrome/tests/websocket.spec.js +371 -0
  70. package/build/routes/chrome/ws/browser.d.ts +6 -0
  71. package/build/routes/chrome/ws/browser.js +5 -0
  72. package/build/routes/chrome/ws/cdp.d.ts +7 -0
  73. package/build/routes/chrome/ws/cdp.js +6 -0
  74. package/build/routes/chrome/ws/cdp.query.json +120 -0
  75. package/build/routes/chrome/ws/page.d.ts +6 -0
  76. package/build/routes/chrome/ws/page.js +5 -0
  77. package/build/routes/chrome/ws/page.query.json +120 -0
  78. package/build/routes/chrome/ws/playwright.d.ts +7 -0
  79. package/build/routes/chrome/ws/playwright.js +6 -0
  80. package/build/routes/chromium/http/content.post.body.json +510 -0
  81. package/build/routes/chromium/http/content.post.d.ts +1 -0
  82. package/build/routes/chromium/http/content.post.js +1 -0
  83. package/build/routes/chromium/http/content.post.query.json +183 -0
  84. package/build/routes/chromium/http/content.post.response.json +5 -0
  85. package/build/routes/chromium/http/download.post.body.json +32 -0
  86. package/build/routes/chromium/http/download.post.d.ts +1 -0
  87. package/build/routes/chromium/http/download.post.js +1 -0
  88. package/build/routes/chromium/http/download.post.query.json +120 -0
  89. package/build/routes/chromium/http/download.post.response.json +4 -0
  90. package/build/routes/chromium/http/function.post.body.json +32 -0
  91. package/build/routes/chromium/http/function.post.d.ts +1 -0
  92. package/build/routes/chromium/http/function.post.js +1 -0
  93. package/build/routes/chromium/http/function.post.query.json +120 -0
  94. package/build/routes/chromium/http/function.post.response.json +4 -0
  95. package/build/routes/chromium/http/json-list.get.d.ts +1 -0
  96. package/build/routes/chromium/http/json-list.get.js +1 -0
  97. package/build/routes/chromium/http/json-list.get.response.json +52 -0
  98. package/build/routes/chromium/http/json-new.put.d.ts +1 -0
  99. package/build/routes/chromium/http/json-new.put.js +1 -0
  100. package/build/routes/chromium/http/json-new.put.response.json +44 -0
  101. package/build/routes/chromium/http/json-protocol.get.d.ts +1 -0
  102. package/build/routes/chromium/http/json-protocol.get.js +1 -0
  103. package/build/routes/chromium/http/json-protocol.get.response.json +6 -0
  104. package/build/routes/chromium/http/json-version.get.d.ts +1 -0
  105. package/build/routes/chromium/http/json-version.get.js +1 -0
  106. package/build/routes/chromium/http/json-version.get.response.json +44 -0
  107. package/build/routes/chromium/http/pdf.post.body.json +654 -0
  108. package/build/routes/chromium/http/pdf.post.d.ts +1 -0
  109. package/build/routes/chromium/http/pdf.post.js +1 -0
  110. package/build/routes/chromium/http/pdf.post.query.json +120 -0
  111. package/build/routes/chromium/http/pdf.post.response.json +5 -0
  112. package/build/routes/chromium/http/performance.post.body.json +26 -0
  113. package/build/routes/chromium/http/performance.post.d.ts +1 -0
  114. package/build/routes/chromium/http/performance.post.js +1 -0
  115. package/build/routes/chromium/http/performance.post.query.json +120 -0
  116. package/build/routes/chromium/http/performance.post.response.json +7 -0
  117. package/build/routes/chromium/http/scrape.post.body.json +557 -0
  118. package/build/routes/chromium/http/scrape.post.d.ts +1 -0
  119. package/build/routes/chromium/http/scrape.post.js +1 -0
  120. package/build/routes/chromium/http/scrape.post.query.json +183 -0
  121. package/build/routes/chromium/http/scrape.post.response.json +309 -0
  122. package/build/routes/chromium/http/screenshot.post.body.json +600 -0
  123. package/build/routes/chromium/http/screenshot.post.d.ts +1 -0
  124. package/build/routes/chromium/http/screenshot.post.js +1 -0
  125. package/build/routes/chromium/http/screenshot.post.query.json +120 -0
  126. package/build/routes/chromium/http/screenshot.post.response.json +5 -0
  127. package/build/routes/chromium/tests/content.spec.js +16 -16
  128. package/build/routes/chromium/tests/download.spec.js +3 -3
  129. package/build/routes/chromium/tests/function.spec.js +10 -10
  130. package/build/routes/chromium/tests/page-websocket.spec.d.ts +1 -0
  131. package/build/routes/chromium/tests/page-websocket.spec.js +97 -0
  132. package/build/routes/chromium/tests/pdf.spec.js +16 -16
  133. package/build/routes/chromium/tests/performance.spec.js +7 -7
  134. package/build/routes/chromium/tests/scrape.spec.js +15 -15
  135. package/build/routes/chromium/tests/screenshot.spec.js +17 -17
  136. package/build/routes/chromium/tests/websocket.spec.js +31 -37
  137. package/build/routes/chromium/ws/browser.d.ts +1 -16
  138. package/build/routes/chromium/ws/browser.js +1 -10
  139. package/build/routes/chromium/ws/cdp.d.ts +1 -0
  140. package/build/routes/chromium/ws/cdp.js +1 -0
  141. package/build/routes/chromium/ws/cdp.query.json +120 -0
  142. package/build/routes/chromium/ws/page.d.ts +1 -16
  143. package/build/routes/chromium/ws/page.js +1 -10
  144. package/build/routes/chromium/ws/playwright.d.ts +1 -0
  145. package/build/routes/chromium/ws/playwright.js +1 -0
  146. package/build/routes/firefox/ws/{playwright-firefox.d.ts → playwright.d.ts} +5 -5
  147. package/build/routes/firefox/ws/{playwright-firefox.js → playwright.js} +4 -4
  148. package/build/routes/management/http/{sessions-get.response.json → sessions.get.response.json} +11 -1
  149. package/build/routes/management/http/{static-get.js → static.get.js} +2 -2
  150. package/build/routes/webkit/ws/{playwright-webkit.d.ts → playwright.d.ts} +5 -5
  151. package/build/routes/webkit/ws/{playwright-webkit.js → playwright.js} +4 -4
  152. package/build/routes/webkit/ws/playwright.query.json +100 -0
  153. package/build/{routes/chromium/ws/cdp-chromium.d.ts → shared/browser.ws.d.ts} +4 -4
  154. package/build/shared/browser.ws.js +12 -0
  155. package/build/{routes/chromium/ws/playwright-chromium.d.ts → shared/chromium.playwright.ws.d.ts} +4 -4
  156. package/build/{routes/chromium/ws/playwright-chromium.js → shared/chromium.playwright.ws.js} +6 -3
  157. package/build/shared/chromium.ws.d.ts +16 -0
  158. package/build/shared/chromium.ws.js +10 -0
  159. package/build/{routes/chromium/http/content-post.d.ts → shared/content.http.d.ts} +3 -3
  160. package/build/{routes/chromium/http/content-post.js → shared/content.http.js} +3 -3
  161. package/build/{routes/chromium/http/download-post.d.ts → shared/download.http.d.ts} +3 -3
  162. package/build/{routes/chromium/http/download-post.js → shared/download.http.js} +4 -4
  163. package/build/{routes/chromium/http/function-post.d.ts → shared/function.http.d.ts} +3 -3
  164. package/build/{routes/chromium/http/function-post.js → shared/function.http.js} +4 -4
  165. package/build/{routes/chromium/http/json-new.d.ts → shared/json-list.http.d.ts} +2 -3
  166. package/build/{routes/chromium/http/json-list.js → shared/json-list.http.js} +5 -8
  167. package/build/{routes/chromium/http/json-list.d.ts → shared/json-new.http.d.ts} +2 -3
  168. package/build/shared/json-new.http.js +34 -0
  169. package/build/{routes/chromium/http/json-protocol-get.js → shared/json-protocol.http.js} +2 -2
  170. package/build/{routes/chromium/http/json-version-get.js → shared/json-version.http.js} +3 -3
  171. package/build/shared/page.ws.d.ts +16 -0
  172. package/build/shared/page.ws.js +13 -0
  173. package/build/{routes/chromium/http/pdf-post.d.ts → shared/pdf.http.d.ts} +3 -3
  174. package/build/{routes/chromium/http/pdf-post.js → shared/pdf.http.js} +3 -3
  175. package/build/{routes/chromium/http/performance.d.ts → shared/performance.http.d.ts} +3 -3
  176. package/build/{routes/chromium/http/performance.js → shared/performance.http.js} +4 -4
  177. package/build/{routes/chromium/http/scrape-post.d.ts → shared/scrape.http.d.ts} +3 -3
  178. package/build/{routes/chromium/http/scrape-post.js → shared/scrape.http.js} +3 -3
  179. package/build/{routes/chromium/http/screenshot-post.d.ts → shared/screenshot.http.d.ts} +3 -3
  180. package/build/{routes/chromium/http/screenshot-post.js → shared/screenshot.http.js} +3 -3
  181. package/build/shared/utils/performance/child.d.ts +1 -0
  182. package/build/{routes/chromium → shared}/utils/performance/main.js +1 -1
  183. package/build/shared/utils/performance/types.js +1 -0
  184. package/build/shim.js +2 -1
  185. package/build/types.d.ts +10 -8
  186. package/build/utils.d.ts +8 -3
  187. package/build/utils.js +24 -11
  188. package/docker/base/Dockerfile +1 -1
  189. package/docker/chrome/Dockerfile +4 -4
  190. package/docker/chromium/.dockerignore +16 -0
  191. package/docker/chromium/Dockerfile +40 -0
  192. package/docker/firefox/Dockerfile +1 -1
  193. package/docker/multi/Dockerfile +13 -1
  194. package/docker/webkit/Dockerfile +1 -1
  195. package/extensions/ublock/3p-filters.html +1 -1
  196. package/extensions/ublock/_locales/ar/messages.json +4 -0
  197. package/extensions/ublock/_locales/az/messages.json +4 -0
  198. package/extensions/ublock/_locales/be/messages.json +4 -0
  199. package/extensions/ublock/_locales/bg/messages.json +5 -1
  200. package/extensions/ublock/_locales/bn/messages.json +4 -0
  201. package/extensions/ublock/_locales/br_FR/messages.json +6 -2
  202. package/extensions/ublock/_locales/bs/messages.json +4 -0
  203. package/extensions/ublock/_locales/ca/messages.json +4 -0
  204. package/extensions/ublock/_locales/cs/messages.json +4 -0
  205. package/extensions/ublock/_locales/cv/messages.json +4 -0
  206. package/extensions/ublock/_locales/cy/messages.json +1294 -0
  207. package/extensions/ublock/_locales/da/messages.json +4 -0
  208. package/extensions/ublock/_locales/de/messages.json +5 -1
  209. package/extensions/ublock/_locales/el/messages.json +4 -0
  210. package/extensions/ublock/_locales/en/messages.json +4 -0
  211. package/extensions/ublock/_locales/en_GB/messages.json +4 -0
  212. package/extensions/ublock/_locales/eo/messages.json +9 -5
  213. package/extensions/ublock/_locales/es/messages.json +4 -0
  214. package/extensions/ublock/_locales/et/messages.json +4 -0
  215. package/extensions/ublock/_locales/eu/messages.json +8 -4
  216. package/extensions/ublock/_locales/fa/messages.json +4 -0
  217. package/extensions/ublock/_locales/fi/messages.json +4 -0
  218. package/extensions/ublock/_locales/fil/messages.json +4 -0
  219. package/extensions/ublock/_locales/fr/messages.json +4 -0
  220. package/extensions/ublock/_locales/fy/messages.json +4 -0
  221. package/extensions/ublock/_locales/gl/messages.json +4 -0
  222. package/extensions/ublock/_locales/gu/messages.json +4 -0
  223. package/extensions/ublock/_locales/he/messages.json +4 -0
  224. package/extensions/ublock/_locales/hi/messages.json +4 -0
  225. package/extensions/ublock/_locales/hr/messages.json +4 -0
  226. package/extensions/ublock/_locales/hu/messages.json +4 -0
  227. package/extensions/ublock/_locales/hy/messages.json +4 -0
  228. package/extensions/ublock/_locales/id/messages.json +5 -1
  229. package/extensions/ublock/_locales/it/messages.json +4 -0
  230. package/extensions/ublock/_locales/ja/messages.json +4 -0
  231. package/extensions/ublock/_locales/ka/messages.json +34 -30
  232. package/extensions/ublock/_locales/kk/messages.json +4 -0
  233. package/extensions/ublock/_locales/kn/messages.json +4 -0
  234. package/extensions/ublock/_locales/ko/messages.json +4 -0
  235. package/extensions/ublock/_locales/ku/messages.json +4 -0
  236. package/extensions/ublock/_locales/lt/messages.json +4 -0
  237. package/extensions/ublock/_locales/lv/messages.json +4 -0
  238. package/extensions/ublock/_locales/mk/messages.json +4 -0
  239. package/extensions/ublock/_locales/ml/messages.json +4 -0
  240. package/extensions/ublock/_locales/mr/messages.json +4 -0
  241. package/extensions/ublock/_locales/ms/messages.json +13 -9
  242. package/extensions/ublock/_locales/nb/messages.json +4 -0
  243. package/extensions/ublock/_locales/nl/messages.json +4 -0
  244. package/extensions/ublock/_locales/no/messages.json +4 -0
  245. package/extensions/ublock/_locales/oc/messages.json +4 -0
  246. package/extensions/ublock/_locales/pa/messages.json +4 -0
  247. package/extensions/ublock/_locales/pl/messages.json +5 -1
  248. package/extensions/ublock/_locales/pt_BR/messages.json +4 -0
  249. package/extensions/ublock/_locales/pt_PT/messages.json +4 -0
  250. package/extensions/ublock/_locales/ro/messages.json +5 -1
  251. package/extensions/ublock/_locales/ru/messages.json +4 -0
  252. package/extensions/ublock/_locales/si/messages.json +4 -0
  253. package/extensions/ublock/_locales/sk/messages.json +4 -0
  254. package/extensions/ublock/_locales/sl/messages.json +4 -0
  255. package/extensions/ublock/_locales/so/messages.json +4 -0
  256. package/extensions/ublock/_locales/sq/messages.json +4 -0
  257. package/extensions/ublock/_locales/sr/messages.json +4 -0
  258. package/extensions/ublock/_locales/sv/messages.json +4 -0
  259. package/extensions/ublock/_locales/sw/messages.json +4 -0
  260. package/extensions/ublock/_locales/ta/messages.json +4 -0
  261. package/extensions/ublock/_locales/te/messages.json +4 -0
  262. package/extensions/ublock/_locales/th/messages.json +12 -8
  263. package/extensions/ublock/_locales/tr/messages.json +4 -0
  264. package/extensions/ublock/_locales/uk/messages.json +4 -0
  265. package/extensions/ublock/_locales/ur/messages.json +4 -0
  266. package/extensions/ublock/_locales/vi/messages.json +4 -0
  267. package/extensions/ublock/_locales/zh_CN/messages.json +6 -2
  268. package/extensions/ublock/_locales/zh_TW/messages.json +6 -2
  269. package/extensions/ublock/assets/assets.json +11 -11
  270. package/extensions/ublock/assets/resources/scriptlets.js +660 -378
  271. package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +7173 -3455
  272. package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +18829 -1918
  273. package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +21 -26
  274. package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +118 -46
  275. package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +710 -1117
  276. package/extensions/ublock/assets/ublock/badlists.txt +0 -4
  277. package/extensions/ublock/assets/ublock/badware.min.txt +116 -105
  278. package/extensions/ublock/assets/ublock/filters.min.txt +1443 -1097
  279. package/extensions/ublock/assets/ublock/privacy.min.txt +50 -31
  280. package/extensions/ublock/assets/ublock/quick-fixes.min.txt +97 -108
  281. package/extensions/ublock/assets/ublock/unbreak.min.txt +64 -21
  282. package/extensions/ublock/css/1p-filters.css +4 -0
  283. package/extensions/ublock/css/3p-filters.css +6 -4
  284. package/extensions/ublock/css/common.css +1 -1
  285. package/extensions/ublock/css/fa-icons.css +1 -0
  286. package/extensions/ublock/css/logger-ui.css +72 -52
  287. package/extensions/ublock/css/popup-fenix.css +1 -1
  288. package/extensions/ublock/img/fontawesome/fontawesome-defs.svg +1 -0
  289. package/extensions/ublock/js/3p-filters.js +3 -3
  290. package/extensions/ublock/js/assets.js +7 -4
  291. package/extensions/ublock/js/background.js +1 -3
  292. package/extensions/ublock/js/benchmarks.js +1 -0
  293. package/extensions/ublock/js/broadcast.js +12 -0
  294. package/extensions/ublock/js/click2load.js +2 -3
  295. package/extensions/ublock/js/codemirror/ubo-static-filtering.js +1 -0
  296. package/extensions/ublock/js/commands.js +10 -0
  297. package/extensions/ublock/js/contentscript-extra.js +13 -11
  298. package/extensions/ublock/js/contentscript.js +0 -31
  299. package/extensions/ublock/js/contextmenu.js +5 -1
  300. package/extensions/ublock/js/dyna-rules.js +83 -52
  301. package/extensions/ublock/js/fa-icons.js +1 -0
  302. package/extensions/ublock/js/filtering-context.js +0 -2
  303. package/extensions/ublock/js/i18n.js +1 -5
  304. package/extensions/ublock/js/logger-ui.js +71 -38
  305. package/extensions/ublock/js/logger.js +18 -14
  306. package/extensions/ublock/js/messaging.js +17 -5
  307. package/extensions/ublock/js/popup-fenix.js +6 -6
  308. package/extensions/ublock/js/scriptlet-filtering-core.js +14 -12
  309. package/extensions/ublock/js/scriptlet-filtering.js +149 -53
  310. package/extensions/ublock/js/scriptlets/scriptlet-loglevel-1.js +49 -0
  311. package/extensions/ublock/js/scriptlets/scriptlet-loglevel-2.js +49 -0
  312. package/extensions/ublock/js/scriptlets/should-inject-contentscript.js +1 -1
  313. package/extensions/ublock/js/static-dnr-filtering.js +4 -2
  314. package/extensions/ublock/js/static-filtering-parser.js +14 -8
  315. package/extensions/ublock/js/static-net-filtering.js +32 -30
  316. package/extensions/ublock/js/storage.js +18 -4
  317. package/extensions/ublock/js/traffic.js +3 -3
  318. package/extensions/ublock/js/ublock.js +1 -1
  319. package/extensions/ublock/js/vapi-background.js +15 -7
  320. package/extensions/ublock/logger-ui.html +18 -10
  321. package/extensions/ublock/manifest.json +4 -1
  322. package/extensions/ublock/web_accessible_resources/chartbeat.js +3 -0
  323. package/package.json +12 -11
  324. package/scripts/build-function.js +1 -1
  325. package/scripts/build-open-api.js +3 -2
  326. package/scripts/clean.js +6 -1
  327. package/scripts/install-debugger.js +20 -0
  328. package/scripts/install-devtools.js +40 -0
  329. package/src/browserless.ts +11 -9
  330. package/src/browsers/chrome.cdp.ts +10 -0
  331. package/src/browsers/chrome.playwright.ts +10 -0
  332. package/src/browsers/{cdp-chromium.ts → chromium.cdp.ts} +20 -13
  333. package/src/browsers/{playwright-chromium.ts → chromium.playwright.ts} +7 -6
  334. package/src/browsers/{playwright-firefox.ts → firefox.playwright.ts} +5 -5
  335. package/src/browsers/index.ts +160 -23
  336. package/src/browsers/{playwright-webkit.ts → webkit.playwright.ts} +5 -5
  337. package/src/exports.ts +6 -4
  338. package/src/http.ts +21 -0
  339. package/src/router.ts +21 -5
  340. package/src/routes/chrome/http/content.post.ts +14 -0
  341. package/src/routes/chrome/http/download.post.ts +14 -0
  342. package/src/routes/chrome/http/function.post.ts +14 -0
  343. package/src/routes/chrome/http/json-list.get.ts +1 -0
  344. package/src/routes/chrome/http/json-new.put.ts +1 -0
  345. package/src/routes/chrome/http/json-protocol.get.ts +1 -0
  346. package/src/routes/chrome/http/json-version.get.ts +1 -0
  347. package/src/routes/chrome/http/pdf.post.ts +14 -0
  348. package/src/routes/chrome/http/performance.post.ts +14 -0
  349. package/src/routes/chrome/http/scrape.post.ts +14 -0
  350. package/src/routes/chrome/http/screenshot.post.ts +14 -0
  351. package/src/routes/chrome/tests/content.spec.ts +375 -0
  352. package/src/routes/chrome/tests/download.spec.ts +77 -0
  353. package/src/routes/chrome/tests/function.spec.ts +282 -0
  354. package/src/routes/chrome/tests/json-version.spec.ts +52 -0
  355. package/src/routes/chrome/tests/page-websocket.spec.ts +129 -0
  356. package/src/routes/chrome/tests/pdf.spec.ts +380 -0
  357. package/src/routes/chrome/tests/performance.spec.ts +155 -0
  358. package/src/routes/chrome/tests/scrape.spec.ts +417 -0
  359. package/src/routes/chrome/tests/screenshot.spec.ts +387 -0
  360. package/src/routes/chrome/tests/websocket.spec.ts +491 -0
  361. package/src/routes/chrome/ws/browser.ts +8 -0
  362. package/src/routes/chrome/ws/cdp.ts +12 -0
  363. package/src/routes/chrome/ws/page.ts +8 -0
  364. package/src/routes/chrome/ws/playwright.ts +12 -0
  365. package/src/routes/chromium/http/content.post.ts +6 -0
  366. package/src/routes/chromium/http/download.post.ts +6 -0
  367. package/src/routes/chromium/http/function.post.ts +6 -0
  368. package/src/routes/chromium/http/json-list.get.ts +1 -0
  369. package/src/routes/chromium/http/json-new.put.ts +1 -0
  370. package/src/routes/chromium/http/json-protocol.get.ts +1 -0
  371. package/src/routes/chromium/http/json-version.get.ts +1 -0
  372. package/src/routes/chromium/http/pdf.post.ts +6 -0
  373. package/src/routes/chromium/http/performance.post.ts +6 -0
  374. package/src/routes/chromium/http/scrape.post.ts +6 -0
  375. package/src/routes/chromium/http/screenshot.post.ts +6 -0
  376. package/src/routes/chromium/tests/content.spec.ts +36 -28
  377. package/src/routes/chromium/tests/download.spec.ts +3 -3
  378. package/src/routes/chromium/tests/function.spec.ts +18 -15
  379. package/src/routes/chromium/tests/page-websocket.spec.ts +129 -0
  380. package/src/routes/chromium/tests/pdf.spec.ts +31 -26
  381. package/src/routes/chromium/tests/performance.spec.ts +46 -34
  382. package/src/routes/chromium/tests/scrape.spec.ts +23 -20
  383. package/src/routes/chromium/tests/screenshot.spec.ts +24 -24
  384. package/src/routes/chromium/tests/websocket.spec.ts +31 -40
  385. package/src/routes/chromium/ws/browser.ts +1 -29
  386. package/src/routes/chromium/ws/cdp.ts +1 -0
  387. package/src/routes/chromium/ws/page.ts +1 -29
  388. package/src/routes/chromium/ws/playwright.ts +4 -0
  389. package/src/routes/firefox/ws/{playwright-firefox.ts → playwright.ts} +5 -5
  390. package/src/routes/management/http/{static-get.ts → static.get.ts} +2 -2
  391. package/src/routes/webkit/ws/{playwright-webkit.ts → playwright.ts} +5 -5
  392. package/src/shared/browser.ws.ts +34 -0
  393. package/src/{routes/chromium/ws/playwright-chromium.ts → shared/chromium.playwright.ws.ts} +7 -4
  394. package/src/{routes/chromium/ws/cdp-chromium.ts → shared/chromium.ws.ts} +6 -6
  395. package/src/{routes/chromium/http/content-post.ts → shared/content.http.ts} +4 -4
  396. package/src/{routes/chromium/http/download-post.ts → shared/download.http.ts} +4 -4
  397. package/src/{routes/chromium/http/function-post.ts → shared/function.http.ts} +4 -4
  398. package/src/shared/json-list.http.ts +35 -0
  399. package/src/{routes/chromium/http/json-new.ts → shared/json-new.http.ts} +23 -7
  400. package/src/{routes/chromium/http/json-protocol-get.ts → shared/json-protocol.http.ts} +3 -5
  401. package/src/{routes/chromium/http/json-version-get.ts → shared/json-version.http.ts} +4 -5
  402. package/src/shared/page.ws.ts +35 -0
  403. package/src/{routes/chromium/http/pdf-post.ts → shared/pdf.http.ts} +4 -4
  404. package/src/{routes/chromium/http/performance.ts → shared/performance.http.ts} +4 -4
  405. package/src/{routes/chromium/http/scrape-post.ts → shared/scrape.http.ts} +4 -4
  406. package/src/{routes/chromium/http/screenshot-post.ts → shared/screenshot.http.ts} +4 -4
  407. package/src/{routes/chromium → shared}/utils/function/handler.ts +2 -2
  408. package/src/{routes/chromium → shared}/utils/performance/main.ts +1 -2
  409. package/src/shim.ts +2 -1
  410. package/src/types.ts +27 -20
  411. package/src/utils.ts +32 -14
  412. package/static/devtools/Images/accelerometer-back.svg +1 -0
  413. package/static/devtools/Images/accelerometer-bottom.png +0 -0
  414. package/static/devtools/Images/accelerometer-front.svg +1 -0
  415. package/static/devtools/Images/accelerometer-left.png +0 -0
  416. package/static/devtools/Images/accelerometer-right.png +0 -0
  417. package/static/devtools/Images/accelerometer-top.png +0 -0
  418. package/static/devtools/Images/baseline-icon.svg +1 -0
  419. package/static/devtools/Images/breaking_change_icon.svg +1 -0
  420. package/static/devtools/Images/checkboxCheckmark.svg +1 -0
  421. package/static/devtools/Images/checker.png +0 -0
  422. package/static/devtools/Images/chevrons.svg +1 -0
  423. package/static/devtools/Images/chromeDisabledSelect.png +0 -0
  424. package/static/devtools/Images/chromeDisabledSelect_2x.png +0 -0
  425. package/static/devtools/Images/chromeLeft.avif +0 -0
  426. package/static/devtools/Images/chromeMiddle.avif +0 -0
  427. package/static/devtools/Images/chromeRight.avif +0 -0
  428. package/static/devtools/Images/chromeSelect.svg +1 -0
  429. package/static/devtools/Images/chromeSelectDark.svg +1 -0
  430. package/static/devtools/Images/cssoverview_icons_2x.avif +0 -0
  431. package/static/devtools/Images/dropdown_7x6_icon.svg +1 -0
  432. package/static/devtools/Images/elements_panel_icon.svg +1 -0
  433. package/static/devtools/Images/errorWave.svg +1 -0
  434. package/static/devtools/Images/error_icon.svg +1 -0
  435. package/static/devtools/Images/feedback_thin_16x16_icon.svg +1 -0
  436. package/static/devtools/Images/flex-align-content-center-icon.svg +1 -0
  437. package/static/devtools/Images/flex-align-content-end-icon.svg +1 -0
  438. package/static/devtools/Images/flex-align-content-space-around-icon.svg +1 -0
  439. package/static/devtools/Images/flex-align-content-space-between-icon.svg +1 -0
  440. package/static/devtools/Images/flex-align-content-space-evenly-icon.svg +1 -0
  441. package/static/devtools/Images/flex-align-content-start-icon.svg +1 -0
  442. package/static/devtools/Images/flex-align-content-stretch-icon.svg +1 -0
  443. package/static/devtools/Images/flex-align-items-center-icon.svg +1 -0
  444. package/static/devtools/Images/flex-align-items-flex-end-icon.svg +1 -0
  445. package/static/devtools/Images/flex-align-items-flex-start-icon.svg +1 -0
  446. package/static/devtools/Images/flex-align-items-stretch-icon.svg +1 -0
  447. package/static/devtools/Images/flex-align-self-center-icon.svg +1 -0
  448. package/static/devtools/Images/flex-align-self-flex-end-icon.svg +1 -0
  449. package/static/devtools/Images/flex-align-self-flex-start-icon.svg +1 -0
  450. package/static/devtools/Images/flex-align-self-stretch-icon.svg +1 -0
  451. package/static/devtools/Images/flex-direction-icon.svg +1 -0
  452. package/static/devtools/Images/flex-justify-content-center-icon.svg +1 -0
  453. package/static/devtools/Images/flex-justify-content-flex-end-icon.svg +1 -0
  454. package/static/devtools/Images/flex-justify-content-flex-start-icon.svg +1 -0
  455. package/static/devtools/Images/flex-justify-content-space-around-icon.svg +1 -0
  456. package/static/devtools/Images/flex-justify-content-space-between-icon.svg +1 -0
  457. package/static/devtools/Images/flex-justify-content-space-evenly-icon.svg +1 -0
  458. package/static/devtools/Images/ic_checkmark_16x16.svg +3 -0
  459. package/static/devtools/Images/ic_delete_filter.svg +1 -0
  460. package/static/devtools/Images/ic_delete_list.svg +1 -0
  461. package/static/devtools/Images/ic_info_black_18dp.svg +1 -0
  462. package/static/devtools/Images/ic_page_next_16x16_icon.svg +1 -0
  463. package/static/devtools/Images/ic_page_prev_16x16_icon.svg +1 -0
  464. package/static/devtools/Images/ic_redo_16x16_icon.svg +1 -0
  465. package/static/devtools/Images/ic_show_node_16x16.svg +4 -0
  466. package/static/devtools/Images/ic_suggest_color.svg +6 -0
  467. package/static/devtools/Images/ic_undo_16x16_icon.svg +1 -0
  468. package/static/devtools/Images/ic_warning_black_18dp.svg +1 -0
  469. package/static/devtools/Images/issue-text-icon.svg +1 -0
  470. package/static/devtools/Images/largeIcons.svg +1 -0
  471. package/static/devtools/Images/lighthouse_logo.svg +1 -0
  472. package/static/devtools/Images/link_icon.svg +1 -0
  473. package/static/devtools/Images/mediumIcons.svg +1 -0
  474. package/static/devtools/Images/navigationControls.png +0 -0
  475. package/static/devtools/Images/navigationControls_2x.png +0 -0
  476. package/static/devtools/Images/network_panel_icon.svg +1 -0
  477. package/static/devtools/Images/nodeIcon.avif +0 -0
  478. package/static/devtools/Images/node_search_icon.svg +1 -0
  479. package/static/devtools/Images/popoverArrows.png +0 -0
  480. package/static/devtools/Images/profileGroupIcon.png +0 -0
  481. package/static/devtools/Images/profileIcon.png +0 -0
  482. package/static/devtools/Images/profileSmallIcon.png +0 -0
  483. package/static/devtools/Images/radioDot-dark-theme.png +0 -0
  484. package/static/devtools/Images/radioDot.png +0 -0
  485. package/static/devtools/Images/refresh_12x12_icon.svg +1 -0
  486. package/static/devtools/Images/resizeDiagonal.svg +1 -0
  487. package/static/devtools/Images/resizeHorizontal.svg +1 -0
  488. package/static/devtools/Images/resizeVertical.svg +1 -0
  489. package/static/devtools/Images/resourceCSSIcon.png +0 -0
  490. package/static/devtools/Images/resourceDocumentIcon.png +0 -0
  491. package/static/devtools/Images/resourceDocumentIconSmall.png +0 -0
  492. package/static/devtools/Images/resourceJSIcon.png +0 -0
  493. package/static/devtools/Images/resourcePlainIcon.png +0 -0
  494. package/static/devtools/Images/resourcePlainIconSmall.png +0 -0
  495. package/static/devtools/Images/resourcesTimeGraphIcon.avif +0 -0
  496. package/static/devtools/Images/searchNext.png +0 -0
  497. package/static/devtools/Images/searchPrev.png +0 -0
  498. package/static/devtools/Images/securityIcons.svg +1 -0
  499. package/static/devtools/Images/settings_14x14_icon.svg +1 -0
  500. package/static/devtools/Images/smallIcons.svg +1 -0
  501. package/static/devtools/Images/sources_panel_icon.svg +1 -0
  502. package/static/devtools/Images/speech.png +0 -0
  503. package/static/devtools/Images/toolbarResizerVertical.png +0 -0
  504. package/static/devtools/Images/touchCursor.png +0 -0
  505. package/static/devtools/Images/touchCursor_2x.png +0 -0
  506. package/static/devtools/Images/treeoutlineTriangles.svg +1 -0
  507. package/static/devtools/Images/warning_icon.svg +1 -0
  508. package/static/devtools/Images/whatsnew.avif +0 -0
  509. package/static/devtools/Tests.js +1654 -0
  510. package/static/devtools/accessibility/accessibility-legacy.js +1 -0
  511. package/static/devtools/accessibility/accessibility-meta.js +1 -0
  512. package/static/devtools/accessibility/accessibility.js +1 -0
  513. package/static/devtools/accessibility/accessibility_module.js +1 -0
  514. package/static/devtools/accessibility_test_runner/accessibility_test_runner.js +77 -0
  515. package/static/devtools/accessibility_test_runner/accessibility_test_runner_module.js +0 -0
  516. package/static/devtools/animation/animation-legacy.js +1 -0
  517. package/static/devtools/animation/animation-meta.js +1 -0
  518. package/static/devtools/animation/animation.js +1 -0
  519. package/static/devtools/animation/animation_module.js +1 -0
  520. package/static/devtools/application_test_runner/AppcacheTestRunner.js +220 -0
  521. package/static/devtools/application_test_runner/CacheStorageTestRunner.js +286 -0
  522. package/static/devtools/application_test_runner/IndexedDBTestRunner.js +476 -0
  523. package/static/devtools/application_test_runner/ResourceTreeTestRunner.js +99 -0
  524. package/static/devtools/application_test_runner/ResourcesTestRunner.js +167 -0
  525. package/static/devtools/application_test_runner/ServiceWorkersTestRunner.js +131 -0
  526. package/static/devtools/application_test_runner/application_test_runner.js +10 -0
  527. package/static/devtools/application_test_runner/application_test_runner_module.js +0 -0
  528. package/static/devtools/axe_core_test_runner/axe_core_test_runner.js +174 -0
  529. package/static/devtools/axe_core_test_runner/axe_core_test_runner_module.js +0 -0
  530. package/static/devtools/bindings/bindings-legacy.js +1 -0
  531. package/static/devtools/bindings/bindings.js +1 -0
  532. package/static/devtools/bindings_test_runner/AutomappingTestRunner.js +130 -0
  533. package/static/devtools/bindings_test_runner/BindingsTestRunner.js +238 -0
  534. package/static/devtools/bindings_test_runner/IsolatedFilesystemTestRunner.js +287 -0
  535. package/static/devtools/bindings_test_runner/OverridesTestRunner.js +26 -0
  536. package/static/devtools/bindings_test_runner/PersistenceTestRunner.js +109 -0
  537. package/static/devtools/bindings_test_runner/bindings_test_runner.js +9 -0
  538. package/static/devtools/bindings_test_runner/bindings_test_runner_module.js +0 -0
  539. package/static/devtools/browser_debugger/browser_debugger-legacy.js +1 -0
  540. package/static/devtools/browser_debugger/browser_debugger-meta.js +1 -0
  541. package/static/devtools/browser_debugger/browser_debugger.js +1 -0
  542. package/static/devtools/browser_debugger/browser_debugger_module.js +1 -0
  543. package/static/devtools/browser_sdk/browser_sdk-meta.js +1 -0
  544. package/static/devtools/browser_sdk/browser_sdk.js +1 -0
  545. package/static/devtools/changes/changes-legacy.js +1 -0
  546. package/static/devtools/changes/changes-meta.js +1 -0
  547. package/static/devtools/changes/changes.js +1 -0
  548. package/static/devtools/changes/changes_module.js +1 -0
  549. package/static/devtools/client_variations/client_variations.js +1 -0
  550. package/static/devtools/client_variations/client_variations_module.js +0 -0
  551. package/static/devtools/cm/cm.js +1 -0
  552. package/static/devtools/cm/cm_module.js +1 -0
  553. package/static/devtools/cm_headless/cm_headless.js +1 -0
  554. package/static/devtools/color_picker/color_picker-legacy.js +1 -0
  555. package/static/devtools/color_picker/color_picker.js +1 -0
  556. package/static/devtools/color_picker/color_picker_module.js +1 -0
  557. package/static/devtools/common/common-legacy.js +1 -0
  558. package/static/devtools/common/common.js +1 -0
  559. package/static/devtools/component_helpers/component_helpers.js +1 -0
  560. package/static/devtools/components/components-legacy.js +1 -0
  561. package/static/devtools/components/components.js +1 -0
  562. package/static/devtools/console/console-legacy.js +1 -0
  563. package/static/devtools/console/console-meta.js +1 -0
  564. package/static/devtools/console/console.js +6 -0
  565. package/static/devtools/console/console_module.js +1 -0
  566. package/static/devtools/console_counters/console_counters-legacy.js +1 -0
  567. package/static/devtools/console_counters/console_counters.js +1 -0
  568. package/static/devtools/console_test_runner/console_test_runner.js +696 -0
  569. package/static/devtools/console_test_runner/console_test_runner_module.js +0 -0
  570. package/static/devtools/cookie_table/cookie_table-legacy.js +1 -0
  571. package/static/devtools/cookie_table/cookie_table.js +1 -0
  572. package/static/devtools/cookie_table/cookie_table_module.js +1 -0
  573. package/static/devtools/coverage/coverage-legacy.js +1 -0
  574. package/static/devtools/coverage/coverage-meta.js +1 -0
  575. package/static/devtools/coverage/coverage.js +1 -0
  576. package/static/devtools/coverage/coverage_module.js +1 -0
  577. package/static/devtools/coverage_test_runner/coverage_test_runner.js +151 -0
  578. package/static/devtools/coverage_test_runner/coverage_test_runner_module.js +0 -0
  579. package/static/devtools/cpu_profiler_test_runner/cpu_profiler_test_runner.js +72 -0
  580. package/static/devtools/cpu_profiler_test_runner/cpu_profiler_test_runner_module.js +0 -0
  581. package/static/devtools/css_overview/css_overview-meta.js +1 -0
  582. package/static/devtools/css_overview/css_overview.js +146 -0
  583. package/static/devtools/css_overview/css_overview_module.js +1 -0
  584. package/static/devtools/data_grid/data_grid-legacy.js +1 -0
  585. package/static/devtools/data_grid/data_grid.js +1 -0
  586. package/static/devtools/data_grid/data_grid_module.js +1 -0
  587. package/static/devtools/data_grid_test_runner/data_grid_test_runner.js +78 -0
  588. package/static/devtools/data_grid_test_runner/data_grid_test_runner_module.js +0 -0
  589. package/static/devtools/developer_resources/developer_resources-legacy.js +1 -0
  590. package/static/devtools/developer_resources/developer_resources-meta.js +1 -0
  591. package/static/devtools/developer_resources/developer_resources.js +1 -0
  592. package/static/devtools/developer_resources/developer_resources_module.js +1 -0
  593. package/static/devtools/device_mode_test_runner/device_mode_test_runner.js +45 -0
  594. package/static/devtools/device_mode_test_runner/device_mode_test_runner_module.js +0 -0
  595. package/static/devtools/devtools_app.html +20 -0
  596. package/static/devtools/devtools_app.js +1 -0
  597. package/static/devtools/devtools_compatibility.js +1546 -0
  598. package/static/devtools/diff/diff-legacy.js +1 -0
  599. package/static/devtools/diff/diff.js +1 -0
  600. package/static/devtools/diff/diff_module.js +0 -0
  601. package/static/devtools/dom_extension/dom_extension.js +1 -0
  602. package/static/devtools/elements/elements-legacy.js +1 -0
  603. package/static/devtools/elements/elements-meta.js +1 -0
  604. package/static/devtools/elements/elements.js +469 -0
  605. package/static/devtools/elements/elements_module.js +1 -0
  606. package/static/devtools/elements_test_runner/EditDOMTestRunner.js +78 -0
  607. package/static/devtools/elements_test_runner/ElementsPanelShadowSelectionOnRefreshTestRunner.js +39 -0
  608. package/static/devtools/elements_test_runner/ElementsTestRunner.js +1280 -0
  609. package/static/devtools/elements_test_runner/SetOuterHTMLTestRunner.js +115 -0
  610. package/static/devtools/elements_test_runner/StylesUpdateLinksTestRunner.js +134 -0
  611. package/static/devtools/elements_test_runner/elements_test_runner.js +9 -0
  612. package/static/devtools/elements_test_runner/elements_test_runner_module.js +0 -0
  613. package/static/devtools/emulated_devices/emulated_devices_module.js +0 -0
  614. package/static/devtools/emulated_devices/optimized/MotoG4-landscape.avif +0 -0
  615. package/static/devtools/emulated_devices/optimized/MotoG4-portrait.avif +0 -0
  616. package/static/devtools/emulated_devices/optimized/Nexus5X-landscape.avif +0 -0
  617. package/static/devtools/emulated_devices/optimized/Nexus5X-portrait.avif +0 -0
  618. package/static/devtools/emulated_devices/optimized/Nexus6P-landscape.avif +0 -0
  619. package/static/devtools/emulated_devices/optimized/Nexus6P-portrait.avif +0 -0
  620. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-default-1x.avif +0 -0
  621. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-default-2x.avif +0 -0
  622. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-1x.avif +0 -0
  623. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-2x.avif +0 -0
  624. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-navigation-1x.avif +0 -0
  625. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-navigation-2x.avif +0 -0
  626. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-default-1x.avif +0 -0
  627. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-default-2x.avif +0 -0
  628. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-keyboard-1x.avif +0 -0
  629. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-keyboard-2x.avif +0 -0
  630. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-navigation-1x.avif +0 -0
  631. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-navigation-2x.avif +0 -0
  632. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-default-1x.avif +0 -0
  633. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-default-2x.avif +0 -0
  634. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-1x.avif +0 -0
  635. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-2x.avif +0 -0
  636. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-1x.avif +0 -0
  637. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-2x.avif +0 -0
  638. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-default-1x.avif +0 -0
  639. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-default-2x.avif +0 -0
  640. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-1x.avif +0 -0
  641. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-2x.avif +0 -0
  642. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-navigation-1x.avif +0 -0
  643. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-navigation-2x.avif +0 -0
  644. package/static/devtools/emulated_devices/optimized/iPad-landscape.avif +0 -0
  645. package/static/devtools/emulated_devices/optimized/iPad-portrait.avif +0 -0
  646. package/static/devtools/emulated_devices/optimized/iPhone5-landscape.avif +0 -0
  647. package/static/devtools/emulated_devices/optimized/iPhone5-portrait.avif +0 -0
  648. package/static/devtools/emulated_devices/optimized/iPhone6-landscape.avif +0 -0
  649. package/static/devtools/emulated_devices/optimized/iPhone6-portrait.avif +0 -0
  650. package/static/devtools/emulated_devices/optimized/iPhone6Plus-landscape.avif +0 -0
  651. package/static/devtools/emulated_devices/optimized/iPhone6Plus-portrait.avif +0 -0
  652. package/static/devtools/emulation/emulation-legacy.js +1 -0
  653. package/static/devtools/emulation/emulation-meta.js +1 -0
  654. package/static/devtools/emulation/emulation.js +1 -0
  655. package/static/devtools/event_listeners/event_listeners-legacy.js +1 -0
  656. package/static/devtools/event_listeners/event_listeners.js +1 -0
  657. package/static/devtools/event_listeners/event_listeners_module.js +1 -0
  658. package/static/devtools/extensions/extensions-legacy.js +1 -0
  659. package/static/devtools/extensions/extensions.js +1 -0
  660. package/static/devtools/extensions_test_runner/ExtensionsNetworkTestRunner.js +27 -0
  661. package/static/devtools/extensions_test_runner/ExtensionsTestRunner.js +68 -0
  662. package/static/devtools/extensions_test_runner/extensions_test_runner.js +6 -0
  663. package/static/devtools/extensions_test_runner/extensions_test_runner_module.js +0 -0
  664. package/static/devtools/formatter/formatter-legacy.js +1 -0
  665. package/static/devtools/formatter/formatter.js +1 -0
  666. package/static/devtools/formatter/formatter_module.js +0 -0
  667. package/static/devtools/formatter_worker/FormatterActions.js +1 -0
  668. package/static/devtools/formatter_worker/formatter_worker-entrypoint.js +1 -0
  669. package/static/devtools/formatter_worker/formatter_worker.js +1 -0
  670. package/static/devtools/har_importer/har_importer-legacy.js +1 -0
  671. package/static/devtools/har_importer/har_importer.js +1 -0
  672. package/static/devtools/har_importer/har_importer_module.js +0 -0
  673. package/static/devtools/heap_profiler_test_runner/heap_profiler_test_runner.js +740 -0
  674. package/static/devtools/heap_profiler_test_runner/heap_profiler_test_runner_module.js +0 -0
  675. package/static/devtools/heap_snapshot_model/heap_snapshot_model-legacy.js +1 -0
  676. package/static/devtools/heap_snapshot_model/heap_snapshot_model.js +1 -0
  677. package/static/devtools/heap_snapshot_model/heap_snapshot_model_module.js +0 -0
  678. package/static/devtools/heap_snapshot_worker/heap_snapshot_worker-entrypoint.js +1 -0
  679. package/static/devtools/heap_snapshot_worker/heap_snapshot_worker-legacy.js +1 -0
  680. package/static/devtools/heap_snapshot_worker/heap_snapshot_worker.js +1 -0
  681. package/static/devtools/heap_snapshot_worker/heap_snapshot_worker_module.js +0 -0
  682. package/static/devtools/help/help-legacy.js +1 -0
  683. package/static/devtools/help/help-meta.js +1 -0
  684. package/static/devtools/help/help.js +1 -0
  685. package/static/devtools/help/help_module.js +1 -0
  686. package/static/devtools/host/host-legacy.js +1 -0
  687. package/static/devtools/host/host.js +1 -0
  688. package/static/devtools/i18n/i18n.js +1 -0
  689. package/static/devtools/i18n/i18n_locales-tsconfig.json +8 -0
  690. package/static/devtools/i18n/locales/en-US.json +3566 -0
  691. package/static/devtools/inline_editor/inline_editor-legacy.js +1 -0
  692. package/static/devtools/inline_editor/inline_editor.js +203 -0
  693. package/static/devtools/inline_editor/inline_editor_module.js +1 -0
  694. package/static/devtools/input/input-legacy.js +1 -0
  695. package/static/devtools/input/input-meta.js +1 -0
  696. package/static/devtools/input/input.js +1 -0
  697. package/static/devtools/input/input_module.js +1 -0
  698. package/static/devtools/inspector.html +20 -0
  699. package/static/devtools/inspector.js +1 -0
  700. package/static/devtools/inspector_main/inspector_main-legacy.js +1 -0
  701. package/static/devtools/inspector_main/inspector_main-meta.js +1 -0
  702. package/static/devtools/inspector_main/inspector_main.js +1 -0
  703. package/static/devtools/integration_test_runner.html +14 -0
  704. package/static/devtools/integration_test_runner.js +2 -0
  705. package/static/devtools/issues/issues-legacy.js +1 -0
  706. package/static/devtools/issues/issues-meta.js +1 -0
  707. package/static/devtools/issues/issues.js +67 -0
  708. package/static/devtools/issues/issues_module.js +1 -0
  709. package/static/devtools/javascript_metadata/javascript_metadata-legacy.js +1 -0
  710. package/static/devtools/javascript_metadata/javascript_metadata.js +1 -0
  711. package/static/devtools/javascript_metadata/javascript_metadata_module.js +0 -0
  712. package/static/devtools/js_app.html +20 -0
  713. package/static/devtools/js_app.js +1 -0
  714. package/static/devtools/js_main/js_main-legacy.js +1 -0
  715. package/static/devtools/js_main/js_main.js +1 -0
  716. package/static/devtools/js_profiler/js_profiler-meta.js +1 -0
  717. package/static/devtools/js_profiler/js_profiler.js +1 -0
  718. package/static/devtools/js_profiler/js_profiler_module.js +0 -0
  719. package/static/devtools/layer_viewer/layer_viewer-legacy.js +1 -0
  720. package/static/devtools/layer_viewer/layer_viewer.js +1 -0
  721. package/static/devtools/layer_viewer/layer_viewer_module.js +1 -0
  722. package/static/devtools/layers/layers-legacy.js +1 -0
  723. package/static/devtools/layers/layers-meta.js +1 -0
  724. package/static/devtools/layers/layers.js +1 -0
  725. package/static/devtools/layers/layers_module.js +0 -0
  726. package/static/devtools/layers_test_runner/layers_test_runner.js +156 -0
  727. package/static/devtools/layers_test_runner/layers_test_runner_module.js +0 -0
  728. package/static/devtools/lighthouse/lighthouse-legacy.js +1 -0
  729. package/static/devtools/lighthouse/lighthouse-meta.js +1 -0
  730. package/static/devtools/lighthouse/lighthouse.js +70 -0
  731. package/static/devtools/lighthouse/lighthouse_module.js +1 -0
  732. package/static/devtools/lighthouse_test_runner/lighthouse_test_runner.js +136 -0
  733. package/static/devtools/lighthouse_test_runner/lighthouse_test_runner_module.js +0 -0
  734. package/static/devtools/lighthouse_worker/LighthouseService.js +195 -0
  735. package/static/devtools/lighthouse_worker/lighthouse_worker.js +6 -0
  736. package/static/devtools/lighthouse_worker.js +1 -0
  737. package/static/devtools/linear_memory_inspector/linear_memory_inspector-legacy.js +1 -0
  738. package/static/devtools/linear_memory_inspector/linear_memory_inspector-meta.js +1 -0
  739. package/static/devtools/linear_memory_inspector/linear_memory_inspector.js +399 -0
  740. package/static/devtools/linear_memory_inspector/linear_memory_inspector_module.js +0 -0
  741. package/static/devtools/main/main-legacy.js +1 -0
  742. package/static/devtools/main/main.js +1 -0
  743. package/static/devtools/media/media-legacy.js +1 -0
  744. package/static/devtools/media/media-meta.js +1 -0
  745. package/static/devtools/media/media.js +1 -0
  746. package/static/devtools/media/media_module.js +1 -0
  747. package/static/devtools/mobile_throttling/mobile_throttling-legacy.js +1 -0
  748. package/static/devtools/mobile_throttling/mobile_throttling-meta.js +1 -0
  749. package/static/devtools/mobile_throttling/mobile_throttling.js +1 -0
  750. package/static/devtools/ndb_app.html +20 -0
  751. package/static/devtools/ndb_app.js +1 -0
  752. package/static/devtools/network/network-legacy.js +1 -0
  753. package/static/devtools/network/network-meta.js +1 -0
  754. package/static/devtools/network/network.js +72 -0
  755. package/static/devtools/network/network_module.js +1 -0
  756. package/static/devtools/network_test_runner/network_test_runner.js +280 -0
  757. package/static/devtools/network_test_runner/network_test_runner_module.js +0 -0
  758. package/static/devtools/node_app.html +20 -0
  759. package/static/devtools/node_app.js +1 -0
  760. package/static/devtools/node_debugger/node_debugger-meta.js +1 -0
  761. package/static/devtools/node_debugger/node_debugger.js +1 -0
  762. package/static/devtools/node_debugger/node_debugger_module.js +0 -0
  763. package/static/devtools/node_main/node_main-legacy.js +1 -0
  764. package/static/devtools/node_main/node_main-meta.js +1 -0
  765. package/static/devtools/node_main/node_main.js +1 -0
  766. package/static/devtools/object_ui/object_ui-legacy.js +1 -0
  767. package/static/devtools/object_ui/object_ui.js +3 -0
  768. package/static/devtools/object_ui/object_ui_module.js +1 -0
  769. package/static/devtools/perf_ui/perf_ui-legacy.js +1 -0
  770. package/static/devtools/perf_ui/perf_ui.js +152 -0
  771. package/static/devtools/perf_ui/perf_ui_module.js +1 -0
  772. package/static/devtools/performance_monitor/performance_monitor-legacy.js +1 -0
  773. package/static/devtools/performance_monitor/performance_monitor-meta.js +1 -0
  774. package/static/devtools/performance_monitor/performance_monitor.js +1 -0
  775. package/static/devtools/performance_monitor/performance_monitor_module.js +1 -0
  776. package/static/devtools/performance_test_runner/TimelineDataTestRunner.js +5375 -0
  777. package/static/devtools/performance_test_runner/TimelineTestRunner.js +446 -0
  778. package/static/devtools/performance_test_runner/performance_test_runner.js +6 -0
  779. package/static/devtools/performance_test_runner/performance_test_runner_module.js +0 -0
  780. package/static/devtools/persistence/persistence-legacy.js +1 -0
  781. package/static/devtools/persistence/persistence-meta.js +1 -0
  782. package/static/devtools/persistence/persistence.js +1 -0
  783. package/static/devtools/platform/platform.js +1 -0
  784. package/static/devtools/profiler/profiler-legacy.js +1 -0
  785. package/static/devtools/profiler/profiler-meta.js +1 -0
  786. package/static/devtools/profiler/profiler.js +8 -0
  787. package/static/devtools/profiler/profiler_module.js +1 -0
  788. package/static/devtools/protocol_client/protocol_client-legacy.js +1 -0
  789. package/static/devtools/protocol_client/protocol_client.js +1 -0
  790. package/static/devtools/protocol_monitor/protocol_monitor-legacy.js +1 -0
  791. package/static/devtools/protocol_monitor/protocol_monitor-meta.js +1 -0
  792. package/static/devtools/protocol_monitor/protocol_monitor.js +1 -0
  793. package/static/devtools/protocol_monitor/protocol_monitor_module.js +1 -0
  794. package/static/devtools/quick_open/quick_open-legacy.js +1 -0
  795. package/static/devtools/quick_open/quick_open.js +1 -0
  796. package/static/devtools/quick_open/quick_open_module.js +1 -0
  797. package/static/devtools/recorder/recorder.js +1 -0
  798. package/static/devtools/resources/resources-legacy.js +1 -0
  799. package/static/devtools/resources/resources-meta.js +1 -0
  800. package/static/devtools/resources/resources.js +28 -0
  801. package/static/devtools/resources/resources_module.js +1 -0
  802. package/static/devtools/root/root-legacy.js +1 -0
  803. package/static/devtools/root/root.js +1 -0
  804. package/static/devtools/screencast/screencast-legacy.js +1 -0
  805. package/static/devtools/screencast/screencast.js +1 -0
  806. package/static/devtools/sdk/sdk-legacy.js +1 -0
  807. package/static/devtools/sdk/sdk.js +2 -0
  808. package/static/devtools/sdk_test_runner/sdk_test_runner.js +297 -0
  809. package/static/devtools/sdk_test_runner/sdk_test_runner_module.js +0 -0
  810. package/static/devtools/search/search-legacy.js +1 -0
  811. package/static/devtools/search/search.js +1 -0
  812. package/static/devtools/search/search_module.js +1 -0
  813. package/static/devtools/security/security-legacy.js +1 -0
  814. package/static/devtools/security/security-meta.js +1 -0
  815. package/static/devtools/security/security.js +1 -0
  816. package/static/devtools/security/security_module.js +1 -0
  817. package/static/devtools/security_test_runner/security_test_runner.js +32 -0
  818. package/static/devtools/security_test_runner/security_test_runner_module.js +0 -0
  819. package/static/devtools/services/services-legacy.js +1 -0
  820. package/static/devtools/services/services.js +1 -0
  821. package/static/devtools/settings/settings-legacy.js +1 -0
  822. package/static/devtools/settings/settings-meta.js +1 -0
  823. package/static/devtools/settings/settings.js +1 -0
  824. package/static/devtools/settings/settings_module.js +1 -0
  825. package/static/devtools/shell.js +1 -0
  826. package/static/devtools/snippets/snippets-legacy.js +1 -0
  827. package/static/devtools/snippets/snippets.js +1 -0
  828. package/static/devtools/snippets/snippets_module.js +0 -0
  829. package/static/devtools/source_frame/source_frame-legacy.js +1 -0
  830. package/static/devtools/source_frame/source_frame.js +1 -0
  831. package/static/devtools/source_frame/source_frame_module.js +1 -0
  832. package/static/devtools/sources/sources-legacy.js +1 -0
  833. package/static/devtools/sources/sources-meta.js +1 -0
  834. package/static/devtools/sources/sources.js +13 -0
  835. package/static/devtools/sources/sources_module.js +1 -0
  836. package/static/devtools/sources_test_runner/AutocompleteTestRunner.js +46 -0
  837. package/static/devtools/sources_test_runner/DebuggerTestRunner.js +895 -0
  838. package/static/devtools/sources_test_runner/EditorTestRunner.js +237 -0
  839. package/static/devtools/sources_test_runner/LiveEditTestRunner.js +33 -0
  840. package/static/devtools/sources_test_runner/SearchTestRunner.js +158 -0
  841. package/static/devtools/sources_test_runner/SourcesTestRunner.js +173 -0
  842. package/static/devtools/sources_test_runner/sources_test_runner.js +10 -0
  843. package/static/devtools/sources_test_runner/sources_test_runner_module.js +0 -0
  844. package/static/devtools/startup/startup.js +1 -0
  845. package/static/devtools/test_runner/test_runner.js +1 -0
  846. package/static/devtools/text_editor/text_editor-legacy.js +1 -0
  847. package/static/devtools/text_editor/text_editor.js +1 -0
  848. package/static/devtools/text_editor/text_editor_module.js +1 -0
  849. package/static/devtools/text_utils/text_utils-legacy.js +1 -0
  850. package/static/devtools/text_utils/text_utils.js +1 -0
  851. package/static/devtools/theme_support/theme_support.js +1 -0
  852. package/static/devtools/third_party/acorn/acorn-tsconfig.json +8 -0
  853. package/static/devtools/third_party/acorn/acorn.js +1 -0
  854. package/static/devtools/third_party/acorn/package/dist/acorn.d.ts +209 -0
  855. package/static/devtools/third_party/acorn/package/dist/acorn.mjs +5261 -0
  856. package/static/devtools/third_party/acorn/package/dist/acorn.mjs.d.ts +2 -0
  857. package/static/devtools/third_party/acorn/package/dist/acorn.mjs.map +1 -0
  858. package/static/devtools/third_party/acorn-loose/acorn-loose-tsconfig.json +8 -0
  859. package/static/devtools/third_party/acorn-loose/package/dist/acorn-loose.d.ts +16 -0
  860. package/static/devtools/third_party/acorn-loose/package/dist/acorn-loose.mjs +1418 -0
  861. package/static/devtools/third_party/axe-core/axe.js +16423 -0
  862. package/static/devtools/third_party/chromium/chromium-tsconfig.json +8 -0
  863. package/static/devtools/third_party/chromium/client-variations/ClientVariations.d.ts +13 -0
  864. package/static/devtools/third_party/chromium/client-variations/ClientVariations.js +27 -0
  865. package/static/devtools/third_party/codemirror/codemirror-tsconfig.json +72 -0
  866. package/static/devtools/third_party/codemirror/package/addon/comment/comment.d.ts +4 -0
  867. package/static/devtools/third_party/codemirror/package/addon/comment/comment.js +211 -0
  868. package/static/devtools/third_party/codemirror/package/addon/edit/closebrackets.d.ts +1 -0
  869. package/static/devtools/third_party/codemirror/package/addon/edit/closebrackets.js +201 -0
  870. package/static/devtools/third_party/codemirror/package/addon/edit/matchbrackets.d.ts +1 -0
  871. package/static/devtools/third_party/codemirror/package/addon/edit/matchbrackets.js +158 -0
  872. package/static/devtools/third_party/codemirror/package/addon/fold/brace-fold.d.ts +1 -0
  873. package/static/devtools/third_party/codemirror/package/addon/fold/brace-fold.js +105 -0
  874. package/static/devtools/third_party/codemirror/package/addon/fold/foldcode.d.ts +1 -0
  875. package/static/devtools/third_party/codemirror/package/addon/fold/foldcode.js +157 -0
  876. package/static/devtools/third_party/codemirror/package/addon/fold/foldgutter.d.ts +1 -0
  877. package/static/devtools/third_party/codemirror/package/addon/fold/foldgutter.js +163 -0
  878. package/static/devtools/third_party/codemirror/package/addon/mode/multiplex.d.ts +1 -0
  879. package/static/devtools/third_party/codemirror/package/addon/mode/multiplex.js +131 -0
  880. package/static/devtools/third_party/codemirror/package/addon/mode/overlay.d.ts +1 -0
  881. package/static/devtools/third_party/codemirror/package/addon/mode/overlay.js +90 -0
  882. package/static/devtools/third_party/codemirror/package/addon/mode/simple.d.ts +1 -0
  883. package/static/devtools/third_party/codemirror/package/addon/mode/simple.js +216 -0
  884. package/static/devtools/third_party/codemirror/package/addon/runmode/runmode-standalone.d.ts +1 -0
  885. package/static/devtools/third_party/codemirror/package/addon/runmode/runmode-standalone.js +333 -0
  886. package/static/devtools/third_party/codemirror/package/addon/selection/active-line.d.ts +1 -0
  887. package/static/devtools/third_party/codemirror/package/addon/selection/active-line.js +72 -0
  888. package/static/devtools/third_party/codemirror/package/addon/selection/mark-selection.d.ts +1 -0
  889. package/static/devtools/third_party/codemirror/package/addon/selection/mark-selection.js +119 -0
  890. package/static/devtools/third_party/codemirror/package/lib/codemirror.d.ts +1 -0
  891. package/static/devtools/third_party/codemirror/package/lib/codemirror.js +9800 -0
  892. package/static/devtools/third_party/codemirror/package/mode/clike/clike.d.ts +4 -0
  893. package/static/devtools/third_party/codemirror/package/mode/clike/clike.js +935 -0
  894. package/static/devtools/third_party/codemirror/package/mode/clojure/clojure.d.ts +4 -0
  895. package/static/devtools/third_party/codemirror/package/mode/clojure/clojure.js +292 -0
  896. package/static/devtools/third_party/codemirror/package/mode/coffeescript/coffeescript.d.ts +4 -0
  897. package/static/devtools/third_party/codemirror/package/mode/coffeescript/coffeescript.js +359 -0
  898. package/static/devtools/third_party/codemirror/package/mode/css/css.d.ts +1 -0
  899. package/static/devtools/third_party/codemirror/package/mode/css/css.js +864 -0
  900. package/static/devtools/third_party/codemirror/package/mode/htmlembedded/htmlembedded.d.ts +1 -0
  901. package/static/devtools/third_party/codemirror/package/mode/htmlembedded/htmlembedded.js +37 -0
  902. package/static/devtools/third_party/codemirror/package/mode/htmlmixed/htmlmixed.d.ts +1 -0
  903. package/static/devtools/third_party/codemirror/package/mode/htmlmixed/htmlmixed.js +153 -0
  904. package/static/devtools/third_party/codemirror/package/mode/javascript/javascript.d.ts +1 -0
  905. package/static/devtools/third_party/codemirror/package/mode/javascript/javascript.js +942 -0
  906. package/static/devtools/third_party/codemirror/package/mode/jsx/jsx.d.ts +4 -0
  907. package/static/devtools/third_party/codemirror/package/mode/jsx/jsx.js +148 -0
  908. package/static/devtools/third_party/codemirror/package/mode/livescript/livescript.d.ts +4 -0
  909. package/static/devtools/third_party/codemirror/package/mode/livescript/livescript.js +280 -0
  910. package/static/devtools/third_party/codemirror/package/mode/markdown/markdown.d.ts +1 -0
  911. package/static/devtools/third_party/codemirror/package/mode/markdown/markdown.js +886 -0
  912. package/static/devtools/third_party/codemirror/package/mode/php/php.d.ts +1 -0
  913. package/static/devtools/third_party/codemirror/package/mode/php/php.js +234 -0
  914. package/static/devtools/third_party/codemirror/package/mode/python/python.d.ts +1 -0
  915. package/static/devtools/third_party/codemirror/package/mode/python/python.js +399 -0
  916. package/static/devtools/third_party/codemirror/package/mode/shell/shell.d.ts +1 -0
  917. package/static/devtools/third_party/codemirror/package/mode/shell/shell.js +168 -0
  918. package/static/devtools/third_party/codemirror/package/mode/wast/wast.d.ts +1 -0
  919. package/static/devtools/third_party/codemirror/package/mode/wast/wast.js +41 -0
  920. package/static/devtools/third_party/codemirror/package/mode/xml/xml.d.ts +1 -0
  921. package/static/devtools/third_party/codemirror/package/mode/xml/xml.js +413 -0
  922. package/static/devtools/third_party/i18n/bundle-tsconfig.json +8 -0
  923. package/static/devtools/third_party/i18n/i18n.d.ts +108 -0
  924. package/static/devtools/third_party/i18n/i18n.js +4336 -0
  925. package/static/devtools/third_party/lighthouse/lighthouse-dt-bundle.d.ts +1 -0
  926. package/static/devtools/third_party/lighthouse/lighthouse-dt-bundle.js +1140 -0
  927. package/static/devtools/third_party/lighthouse/lighthouse-tsconfig.json +10 -0
  928. package/static/devtools/third_party/lighthouse/locales/ar-XB.json +2066 -0
  929. package/static/devtools/third_party/lighthouse/locales/ar.json +2066 -0
  930. package/static/devtools/third_party/lighthouse/locales/bg.json +2066 -0
  931. package/static/devtools/third_party/lighthouse/locales/ca.json +2066 -0
  932. package/static/devtools/third_party/lighthouse/locales/cs.json +2066 -0
  933. package/static/devtools/third_party/lighthouse/locales/da.json +2066 -0
  934. package/static/devtools/third_party/lighthouse/locales/de.json +2066 -0
  935. package/static/devtools/third_party/lighthouse/locales/el.json +2066 -0
  936. package/static/devtools/third_party/lighthouse/locales/en-GB.json +2066 -0
  937. package/static/devtools/third_party/lighthouse/locales/en-US.json +2297 -0
  938. package/static/devtools/third_party/lighthouse/locales/en-XA.json +2066 -0
  939. package/static/devtools/third_party/lighthouse/locales/en-XL.json +2297 -0
  940. package/static/devtools/third_party/lighthouse/locales/es-419.json +2066 -0
  941. package/static/devtools/third_party/lighthouse/locales/es.json +2066 -0
  942. package/static/devtools/third_party/lighthouse/locales/fi.json +2066 -0
  943. package/static/devtools/third_party/lighthouse/locales/fil.json +2066 -0
  944. package/static/devtools/third_party/lighthouse/locales/fr.json +2066 -0
  945. package/static/devtools/third_party/lighthouse/locales/he.json +2066 -0
  946. package/static/devtools/third_party/lighthouse/locales/hi.json +2066 -0
  947. package/static/devtools/third_party/lighthouse/locales/hr.json +2066 -0
  948. package/static/devtools/third_party/lighthouse/locales/hu.json +2066 -0
  949. package/static/devtools/third_party/lighthouse/locales/id.json +2066 -0
  950. package/static/devtools/third_party/lighthouse/locales/it.json +2066 -0
  951. package/static/devtools/third_party/lighthouse/locales/ja.json +2066 -0
  952. package/static/devtools/third_party/lighthouse/locales/ko.json +2066 -0
  953. package/static/devtools/third_party/lighthouse/locales/lt.json +2066 -0
  954. package/static/devtools/third_party/lighthouse/locales/lv.json +2066 -0
  955. package/static/devtools/third_party/lighthouse/locales/nl.json +2066 -0
  956. package/static/devtools/third_party/lighthouse/locales/no.json +2066 -0
  957. package/static/devtools/third_party/lighthouse/locales/pl.json +2066 -0
  958. package/static/devtools/third_party/lighthouse/locales/pt-PT.json +2066 -0
  959. package/static/devtools/third_party/lighthouse/locales/pt.json +2066 -0
  960. package/static/devtools/third_party/lighthouse/locales/ro.json +2066 -0
  961. package/static/devtools/third_party/lighthouse/locales/ru.json +2066 -0
  962. package/static/devtools/third_party/lighthouse/locales/sk.json +2066 -0
  963. package/static/devtools/third_party/lighthouse/locales/sl.json +2066 -0
  964. package/static/devtools/third_party/lighthouse/locales/sr-Latn.json +2066 -0
  965. package/static/devtools/third_party/lighthouse/locales/sr.json +2066 -0
  966. package/static/devtools/third_party/lighthouse/locales/sv.json +2066 -0
  967. package/static/devtools/third_party/lighthouse/locales/ta.json +2066 -0
  968. package/static/devtools/third_party/lighthouse/locales/te.json +2066 -0
  969. package/static/devtools/third_party/lighthouse/locales/th.json +2066 -0
  970. package/static/devtools/third_party/lighthouse/locales/tr.json +2066 -0
  971. package/static/devtools/third_party/lighthouse/locales/uk.json +2066 -0
  972. package/static/devtools/third_party/lighthouse/locales/vi.json +2066 -0
  973. package/static/devtools/third_party/lighthouse/locales/zh-HK.json +2066 -0
  974. package/static/devtools/third_party/lighthouse/locales/zh-TW.json +2066 -0
  975. package/static/devtools/third_party/lighthouse/locales/zh.json +2066 -0
  976. package/static/devtools/third_party/lighthouse/report-assets/report-generator.d.ts +1 -0
  977. package/static/devtools/third_party/lighthouse/report-assets/report-generator.js +167 -0
  978. package/static/devtools/third_party/lighthouse/report-assets/report.d.ts +1 -0
  979. package/static/devtools/third_party/lighthouse/report-assets/report.js +5032 -0
  980. package/static/devtools/third_party/lit-html/lit-html-tsconfig.json +22 -0
  981. package/static/devtools/third_party/lit-html/lit-html.js +120 -0
  982. package/static/devtools/third_party/lit-html/package/directives/class-map.d.ts +28 -0
  983. package/static/devtools/third_party/lit-html/package/directives/class-map.js +101 -0
  984. package/static/devtools/third_party/lit-html/package/directives/class-map.js.map +1 -0
  985. package/static/devtools/third_party/lit-html/package/directives/if-defined.d.ts +22 -0
  986. package/static/devtools/third_party/lit-html/package/directives/if-defined.js +37 -0
  987. package/static/devtools/third_party/lit-html/package/directives/if-defined.js.map +1 -0
  988. package/static/devtools/third_party/lit-html/package/directives/live.d.ts +38 -0
  989. package/static/devtools/third_party/lit-html/package/directives/live.js +73 -0
  990. package/static/devtools/third_party/lit-html/package/directives/live.js.map +1 -0
  991. package/static/devtools/third_party/lit-html/package/directives/repeat.d.ts +37 -0
  992. package/static/devtools/third_party/lit-html/package/directives/repeat.js +415 -0
  993. package/static/devtools/third_party/lit-html/package/directives/repeat.js.map +1 -0
  994. package/static/devtools/third_party/lit-html/package/directives/style-map.d.ts +36 -0
  995. package/static/devtools/third_party/lit-html/package/directives/style-map.js +78 -0
  996. package/static/devtools/third_party/lit-html/package/directives/style-map.js.map +1 -0
  997. package/static/devtools/third_party/lit-html/package/lib/default-template-processor.d.ts +39 -0
  998. package/static/devtools/third_party/lit-html/package/lib/default-template-processor.js +52 -0
  999. package/static/devtools/third_party/lit-html/package/lib/default-template-processor.js.map +1 -0
  1000. package/static/devtools/third_party/lit-html/package/lib/directive.d.ts +59 -0
  1001. package/static/devtools/third_party/lit-html/package/lib/directive.js +63 -0
  1002. package/static/devtools/third_party/lit-html/package/lib/directive.js.map +1 -0
  1003. package/static/devtools/third_party/lit-html/package/lib/dom.d.ts +29 -0
  1004. package/static/devtools/third_party/lit-html/package/lib/dom.js +44 -0
  1005. package/static/devtools/third_party/lit-html/package/lib/dom.js.map +1 -0
  1006. package/static/devtools/third_party/lit-html/package/lib/part.d.ts +46 -0
  1007. package/static/devtools/third_party/lit-html/package/lib/part.js +23 -0
  1008. package/static/devtools/third_party/lit-html/package/lib/part.js.map +1 -0
  1009. package/static/devtools/third_party/lit-html/package/lib/parts.d.ts +148 -0
  1010. package/static/devtools/third_party/lit-html/package/lib/parts.js +476 -0
  1011. package/static/devtools/third_party/lit-html/package/lib/parts.js.map +1 -0
  1012. package/static/devtools/third_party/lit-html/package/lib/render.d.ts +33 -0
  1013. package/static/devtools/third_party/lit-html/package/lib/render.js +43 -0
  1014. package/static/devtools/third_party/lit-html/package/lib/render.js.map +1 -0
  1015. package/static/devtools/third_party/lit-html/package/lib/template-factory.d.ts +57 -0
  1016. package/static/devtools/third_party/lit-html/package/lib/template-factory.js +48 -0
  1017. package/static/devtools/third_party/lit-html/package/lib/template-factory.js.map +1 -0
  1018. package/static/devtools/third_party/lit-html/package/lib/template-instance.d.ts +30 -0
  1019. package/static/devtools/third_party/lit-html/package/lib/template-instance.js +134 -0
  1020. package/static/devtools/third_party/lit-html/package/lib/template-instance.js.map +1 -0
  1021. package/static/devtools/third_party/lit-html/package/lib/template-result.d.ts +42 -0
  1022. package/static/devtools/third_party/lit-html/package/lib/template-result.js +131 -0
  1023. package/static/devtools/third_party/lit-html/package/lib/template-result.js.map +1 -0
  1024. package/static/devtools/third_party/lit-html/package/lib/template.d.ts +92 -0
  1025. package/static/devtools/third_party/lit-html/package/lib/template.js +215 -0
  1026. package/static/devtools/third_party/lit-html/package/lib/template.js.map +1 -0
  1027. package/static/devtools/third_party/lit-html/package/lit-html.d.ts +42 -0
  1028. package/static/devtools/third_party/lit-html/package/lit-html.js +59 -0
  1029. package/static/devtools/third_party/lit-html/package/lit-html.js.map +1 -0
  1030. package/static/devtools/third_party/marked/marked-tsconfig.json +8 -0
  1031. package/static/devtools/third_party/marked/marked.js +1 -0
  1032. package/static/devtools/third_party/marked/package/lib/marked.esm.d.ts +1 -0
  1033. package/static/devtools/third_party/marked/package/lib/marked.esm.js +2584 -0
  1034. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts +53 -0
  1035. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts.map +1 -0
  1036. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.js +64 -0
  1037. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.d.ts +176 -0
  1038. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.d.ts.map +1 -0
  1039. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.js +356 -0
  1040. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts +21 -0
  1041. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts.map +1 -0
  1042. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js +81 -0
  1043. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts +423 -0
  1044. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts.map +1 -0
  1045. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.js +516 -0
  1046. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts +39 -0
  1047. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts.map +1 -0
  1048. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js +76 -0
  1049. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.d.ts +26 -0
  1050. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.d.ts.map +1 -0
  1051. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +30 -0
  1052. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts +120 -0
  1053. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts.map +1 -0
  1054. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.js +266 -0
  1055. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectionTransport.d.ts +22 -0
  1056. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectionTransport.d.ts.map +1 -0
  1057. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectionTransport.js +15 -0
  1058. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts +72 -0
  1059. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts.map +1 -0
  1060. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.js +60 -0
  1061. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts +181 -0
  1062. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts.map +1 -0
  1063. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.js +316 -0
  1064. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts +174 -0
  1065. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts.map +1 -0
  1066. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js +647 -0
  1067. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts +53 -0
  1068. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts.map +1 -0
  1069. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +77 -0
  1070. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.d.ts +33 -0
  1071. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.d.ts.map +1 -0
  1072. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.js +873 -0
  1073. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts +76 -0
  1074. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts.map +1 -0
  1075. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.js +92 -0
  1076. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.d.ts +25 -0
  1077. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.d.ts.map +1 -0
  1078. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.js +33 -0
  1079. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts +34 -0
  1080. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts.map +1 -0
  1081. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.js +37 -0
  1082. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts +59 -0
  1083. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts.map +1 -0
  1084. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.js +15 -0
  1085. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.d.ts +89 -0
  1086. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.d.ts.map +1 -0
  1087. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.js +109 -0
  1088. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.d.ts +82 -0
  1089. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.d.ts.map +1 -0
  1090. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.js +83 -0
  1091. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts +189 -0
  1092. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts.map +1 -0
  1093. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.js +313 -0
  1094. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts +60 -0
  1095. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts.map +1 -0
  1096. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.js +66 -0
  1097. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts +735 -0
  1098. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts.map +1 -0
  1099. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js +962 -0
  1100. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts +276 -0
  1101. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts.map +1 -0
  1102. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js +421 -0
  1103. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts +128 -0
  1104. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts.map +1 -0
  1105. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js +150 -0
  1106. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts +322 -0
  1107. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts.map +1 -0
  1108. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.js +463 -0
  1109. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts +439 -0
  1110. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts.map +1 -0
  1111. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js +724 -0
  1112. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts +62 -0
  1113. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts.map +1 -0
  1114. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.js +145 -0
  1115. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts +80 -0
  1116. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts.map +1 -0
  1117. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js +262 -0
  1118. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts +152 -0
  1119. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts.map +1 -0
  1120. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js +31 -0
  1121. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts +910 -0
  1122. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts.map +1 -0
  1123. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js +1343 -0
  1124. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Product.d.ts +21 -0
  1125. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Product.d.ts.map +1 -0
  1126. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Product.js +15 -0
  1127. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts +135 -0
  1128. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts.map +1 -0
  1129. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.js +133 -0
  1130. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PuppeteerViewport.d.ts +24 -0
  1131. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PuppeteerViewport.d.ts.map +1 -0
  1132. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PuppeteerViewport.js +0 -0
  1133. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts +66 -0
  1134. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts.map +1 -0
  1135. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js +157 -0
  1136. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.d.ts +61 -0
  1137. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.d.ts.map +1 -0
  1138. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.js +72 -0
  1139. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts +98 -0
  1140. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts.map +1 -0
  1141. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.js +137 -0
  1142. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.d.ts +28 -0
  1143. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.d.ts.map +1 -0
  1144. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.js +43 -0
  1145. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.d.ts +47 -0
  1146. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.d.ts.map +1 -0
  1147. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.js +94 -0
  1148. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.d.ts +40 -0
  1149. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.d.ts.map +1 -0
  1150. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.js +403 -0
  1151. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts +102 -0
  1152. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts.map +1 -0
  1153. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.js +109 -0
  1154. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.d.ts +22 -0
  1155. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.d.ts.map +1 -0
  1156. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.js +24 -0
  1157. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.d.ts +17 -0
  1158. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.d.ts.map +1 -0
  1159. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.js +20 -0
  1160. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.d.ts +66 -0
  1161. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.d.ts.map +1 -0
  1162. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js +288 -0
  1163. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts +17 -0
  1164. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts.map +1 -0
  1165. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/environment.js +16 -0
  1166. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.d.ts +18 -0
  1167. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.d.ts.map +1 -0
  1168. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js +39 -0
  1169. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.d.ts +18 -0
  1170. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.d.ts.map +1 -0
  1171. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.js +22 -0
  1172. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts +132 -0
  1173. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts.map +1 -0
  1174. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js +468 -0
  1175. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts +40 -0
  1176. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts.map +1 -0
  1177. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js +197 -0
  1178. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +42 -0
  1179. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts.map +1 -0
  1180. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.js +0 -0
  1181. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts +16 -0
  1182. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts.map +1 -0
  1183. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js +469 -0
  1184. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts +29 -0
  1185. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts.map +1 -0
  1186. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.js +34 -0
  1187. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +31 -0
  1188. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts.map +1 -0
  1189. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js +61 -0
  1190. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts +156 -0
  1191. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts.map +1 -0
  1192. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.js +183 -0
  1193. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts +18 -0
  1194. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts.map +1 -0
  1195. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js +151 -0
  1196. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.d.ts +18 -0
  1197. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.d.ts.map +1 -0
  1198. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.js +23 -0
  1199. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node.d.ts +18 -0
  1200. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node.d.ts.map +1 -0
  1201. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node.js +22 -0
  1202. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +22 -0
  1203. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts.map +1 -0
  1204. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +19 -0
  1205. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/web.d.ts +18 -0
  1206. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/web.d.ts.map +1 -0
  1207. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/web.js +22 -0
  1208. package/static/devtools/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.d.ts +22 -0
  1209. package/static/devtools/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.d.ts.map +1 -0
  1210. package/static/devtools/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.js +53 -0
  1211. package/static/devtools/third_party/puppeteer/puppeteer-tsconfig.json +58 -0
  1212. package/static/devtools/third_party/puppeteer/puppeteer.js +1 -0
  1213. package/static/devtools/third_party/wasmparser/package/dist/esm/WasmDis.js +1595 -0
  1214. package/static/devtools/third_party/wasmparser/package/dist/esm/WasmParser.js +3120 -0
  1215. package/static/devtools/third_party/wasmparser/wasmparser-tsconfig.json +9 -0
  1216. package/static/devtools/timeline/timeline-legacy.js +1 -0
  1217. package/static/devtools/timeline/timeline-meta.js +1 -0
  1218. package/static/devtools/timeline/timeline.js +1 -0
  1219. package/static/devtools/timeline/timeline_module.js +1 -0
  1220. package/static/devtools/timeline_model/timeline_model-legacy.js +1 -0
  1221. package/static/devtools/timeline_model/timeline_model.js +1 -0
  1222. package/static/devtools/timeline_model/timeline_model_module.js +0 -0
  1223. package/static/devtools/toolbox.html +20 -0
  1224. package/static/devtools/toolbox.js +1 -0
  1225. package/static/devtools/toolbox_bootstrap/toolbox_bootstrap.js +1 -0
  1226. package/static/devtools/ui/components/components.js +378 -0
  1227. package/static/devtools/ui/ui-legacy.js +1 -0
  1228. package/static/devtools/ui/ui.js +3 -0
  1229. package/static/devtools/ui/utils/utils.js +1 -0
  1230. package/static/devtools/wasmparser_worker/wasmparser_worker-entrypoint.js +1 -0
  1231. package/static/devtools/wasmparser_worker/wasmparser_worker.js +1 -0
  1232. package/static/devtools/web_audio/graph_visualizer/graph_visualizer.js +1 -0
  1233. package/static/devtools/web_audio/web_audio-legacy.js +1 -0
  1234. package/static/devtools/web_audio/web_audio-meta.js +1 -0
  1235. package/static/devtools/web_audio/web_audio.js +23 -0
  1236. package/static/devtools/web_audio/web_audio_module.js +1 -0
  1237. package/static/devtools/webauthn/webauthn-legacy.js +1 -0
  1238. package/static/devtools/webauthn/webauthn-meta.js +1 -0
  1239. package/static/devtools/webauthn/webauthn.js +6 -0
  1240. package/static/devtools/webauthn/webauthn_module.js +1 -0
  1241. package/static/devtools/worker_app.html +20 -0
  1242. package/static/devtools/worker_app.js +1 -0
  1243. package/static/devtools/worker_main/worker_main-legacy.js +1 -0
  1244. package/static/devtools/worker_main/worker_main.js +1 -0
  1245. package/static/devtools/worker_service/worker_service.js +1 -0
  1246. package/static/devtools/workspace/workspace-legacy.js +1 -0
  1247. package/static/devtools/workspace/workspace.js +1 -0
  1248. package/static/devtools/workspace_diff/workspace_diff-legacy.js +1 -0
  1249. package/static/devtools/workspace_diff/workspace_diff.js +1 -0
  1250. package/static/devtools/workspace_diff/workspace_diff_module.js +0 -0
  1251. package/static/docs/swagger.json +2337 -279
  1252. package/static/function/client.js +1037 -992
  1253. package/build/routes/chromium/http/json-new.js +0 -23
  1254. package/build/routes/chromium/http/json-version-get.response.json +0 -37
  1255. package/build/routes/chromium/utils/cdp.d.ts +0 -2
  1256. package/build/routes/chromium/utils/cdp.js +0 -14
  1257. package/build/routes/chromium/ws/cdp-chromium.js +0 -10
  1258. package/src/routes/chromium/http/json-list.ts +0 -50
  1259. package/src/routes/chromium/utils/cdp.ts +0 -19
  1260. package/build/routes/{chromium/http/content-post.query.json → chrome/http/content.post.query.json} +0 -0
  1261. package/build/routes/{chromium/http/content-post.response.json → chrome/http/content.post.response.json} +0 -0
  1262. package/build/routes/{chromium/http/download-post.body.json → chrome/http/download.post.body.json} +0 -0
  1263. package/build/routes/{chromium/http/download-post.query.json → chrome/http/download.post.query.json} +0 -0
  1264. package/build/routes/{chromium/http/download-post.response.json → chrome/http/download.post.response.json} +0 -0
  1265. package/build/routes/{chromium/http/function-post.body.json → chrome/http/function.post.body.json} +0 -0
  1266. package/build/routes/{chromium/http/function-post.query.json → chrome/http/function.post.query.json} +0 -0
  1267. package/build/routes/{chromium/http/function-post.response.json → chrome/http/function.post.response.json} +0 -0
  1268. package/build/routes/{chromium/http/json-list.response.json → chrome/http/json-list.get.response.json} +0 -0
  1269. package/build/routes/{chromium/http/json-new.response.json → chrome/http/json-new.put.response.json} +0 -0
  1270. package/build/routes/{chromium/http/json-protocol-get.response.json → chrome/http/json-protocol.get.response.json} +0 -0
  1271. package/build/routes/{chromium/http/pdf-post.query.json → chrome/http/pdf.post.query.json} +0 -0
  1272. package/build/routes/{chromium/http/pdf-post.response.json → chrome/http/pdf.post.response.json} +0 -0
  1273. package/build/routes/{chromium/http/performance.body.json → chrome/http/performance.post.body.json} +0 -0
  1274. package/build/routes/{chromium/http/performance.query.json → chrome/http/performance.post.query.json} +0 -0
  1275. package/build/routes/{chromium/http/performance.response.json → chrome/http/performance.post.response.json} +0 -0
  1276. package/build/routes/{chromium/http/scrape-post.query.json → chrome/http/scrape.post.query.json} +0 -0
  1277. package/build/routes/{chromium/http/scrape-post.response.json → chrome/http/scrape.post.response.json} +0 -0
  1278. package/build/routes/{chromium/http/screenshot-post.query.json → chrome/http/screenshot.post.query.json} +0 -0
  1279. package/build/routes/{chromium/http/screenshot-post.response.json → chrome/http/screenshot.post.response.json} +0 -0
  1280. package/build/routes/{chromium/utils/performance/child.d.ts → chrome/tests/content.spec.d.ts} +0 -0
  1281. package/build/routes/{chromium/utils/performance/types.js → chrome/tests/download.spec.d.ts} +0 -0
  1282. package/build/routes/{chromium/ws/cdp-chromium.query.json → chrome/ws/browser.query.json} +0 -0
  1283. package/build/routes/{chromium/ws/playwright-chromium.query.json → chrome/ws/playwright.query.json} +0 -0
  1284. package/build/routes/{firefox/ws/playwright-firefox.query.json → chromium/ws/playwright.query.json} +0 -0
  1285. package/build/routes/{webkit/ws/playwright-webkit.query.json → firefox/ws/playwright.query.json} +0 -0
  1286. package/build/routes/management/http/{config-get.d.ts → config.get.d.ts} +0 -0
  1287. package/build/routes/management/http/{config-get.js → config.get.js} +0 -0
  1288. package/build/routes/management/http/{config-get.response.json → config.get.response.json} +0 -0
  1289. package/build/routes/management/http/{metrics-total-get.d.ts → metrics-total.get.d.ts} +0 -0
  1290. package/build/routes/management/http/{metrics-total-get.js → metrics-total.get.js} +0 -0
  1291. package/build/routes/management/http/{metrics-total-get.response.json → metrics-total.get.response.json} +0 -0
  1292. package/build/routes/management/http/{metrics-get.d.ts → metrics.get.d.ts} +0 -0
  1293. package/build/routes/management/http/{metrics-get.js → metrics.get.js} +0 -0
  1294. package/build/routes/management/http/{metrics-get.response.json → metrics.get.response.json} +0 -0
  1295. package/build/routes/management/http/{sessions-get.d.ts → sessions.get.d.ts} +0 -0
  1296. package/build/routes/management/http/{sessions-get.js → sessions.get.js} +0 -0
  1297. package/build/routes/management/http/{static-get.d.ts → static.get.d.ts} +0 -0
  1298. package/build/{routes/chromium/http/json-protocol-get.d.ts → shared/json-protocol.http.d.ts} +1 -1
  1299. package/build/{routes/chromium/http/json-version-get.d.ts → shared/json-version.http.d.ts} +1 -1
  1300. /package/build/{routes/chromium → shared}/utils/function/client.d.ts +0 -0
  1301. /package/build/{routes/chromium → shared}/utils/function/client.js +0 -0
  1302. /package/build/{routes/chromium → shared}/utils/function/handler.d.ts +0 -0
  1303. /package/build/{routes/chromium → shared}/utils/function/handler.js +0 -0
  1304. /package/build/{routes/chromium → shared}/utils/performance/child.js +0 -0
  1305. /package/build/{routes/chromium → shared}/utils/performance/main.d.ts +0 -0
  1306. /package/build/{routes/chromium → shared}/utils/performance/types.d.ts +0 -0
  1307. /package/src/routes/management/http/{config-get.ts → config.get.ts} +0 -0
  1308. /package/src/routes/management/http/{metrics-total-get.ts → metrics-total.get.ts} +0 -0
  1309. /package/src/routes/management/http/{metrics-get.ts → metrics.get.ts} +0 -0
  1310. /package/src/routes/management/http/{sessions-get.ts → sessions.get.ts} +0 -0
  1311. /package/src/{routes/chromium → shared}/utils/function/client.ts +0 -0
  1312. /package/src/{routes/chromium → shared}/utils/performance/child.ts +0 -0
  1313. /package/src/{routes/chromium → shared}/utils/performance/types.ts +0 -0
@@ -0,0 +1,3566 @@
1
+ {
2
+ "animation/animation-meta.ts | animations": {
3
+ "message": "Animations"
4
+ },
5
+ "animation/animation-meta.ts | showAnimations": {
6
+ "message": "Show Animations"
7
+ },
8
+ "animation/AnimationTimeline.ts | animationPreviews": {
9
+ "message": "Animation previews"
10
+ },
11
+ "animation/AnimationTimeline.ts | animationPreviewS": {
12
+ "message": "Animation Preview {PH1}"
13
+ },
14
+ "animation/AnimationTimeline.ts | clearAll": {
15
+ "message": "Clear all"
16
+ },
17
+ "animation/AnimationTimeline.ts | listeningForAnimations": {
18
+ "message": "Listening for animations..."
19
+ },
20
+ "animation/AnimationTimeline.ts | pause": {
21
+ "message": "Pause"
22
+ },
23
+ "animation/AnimationTimeline.ts | pauseAll": {
24
+ "message": "Pause all"
25
+ },
26
+ "animation/AnimationTimeline.ts | pauseTimeline": {
27
+ "message": "Pause timeline"
28
+ },
29
+ "animation/AnimationTimeline.ts | playbackRatePlaceholder": {
30
+ "message": "{PH1}%"
31
+ },
32
+ "animation/AnimationTimeline.ts | playbackRates": {
33
+ "message": "Playback rates"
34
+ },
35
+ "animation/AnimationTimeline.ts | playTimeline": {
36
+ "message": "Play timeline"
37
+ },
38
+ "animation/AnimationTimeline.ts | replayTimeline": {
39
+ "message": "Replay timeline"
40
+ },
41
+ "animation/AnimationTimeline.ts | resumeAll": {
42
+ "message": "Resume all"
43
+ },
44
+ "animation/AnimationTimeline.ts | selectAnEffectAboveToInspectAnd": {
45
+ "message": "Select an effect above to inspect and modify."
46
+ },
47
+ "animation/AnimationTimeline.ts | setSpeedToS": {
48
+ "message": "Set speed to {PH1}"
49
+ },
50
+ "animation/AnimationUI.ts | animationEndpointSlider": {
51
+ "message": "Animation Endpoint slider"
52
+ },
53
+ "animation/AnimationUI.ts | animationKeyframeSlider": {
54
+ "message": "Animation Keyframe slider"
55
+ },
56
+ "animation/AnimationUI.ts | sSlider": {
57
+ "message": "{PH1} slider"
58
+ },
59
+ "browser_sdk/browser_sdk-meta.ts | clear": {
60
+ "message": "clear"
61
+ },
62
+ "browser_sdk/browser_sdk-meta.ts | doNotPreserveLogOnPageReload": {
63
+ "message": "Do not preserve log on page reload / navigation"
64
+ },
65
+ "browser_sdk/browser_sdk-meta.ts | network": {
66
+ "message": "Network"
67
+ },
68
+ "browser_sdk/browser_sdk-meta.ts | preserve": {
69
+ "message": "preserve"
70
+ },
71
+ "browser_sdk/browser_sdk-meta.ts | preserveLog": {
72
+ "message": "Preserve log"
73
+ },
74
+ "browser_sdk/browser_sdk-meta.ts | preserveLogOnPageReload": {
75
+ "message": "Preserve log on page reload / navigation"
76
+ },
77
+ "browser_sdk/browser_sdk-meta.ts | recordNetworkLog": {
78
+ "message": "Record network log"
79
+ },
80
+ "browser_sdk/browser_sdk-meta.ts | reset": {
81
+ "message": "reset"
82
+ },
83
+ "changes/changes-meta.ts | changes": {
84
+ "message": "Changes"
85
+ },
86
+ "changes/changes-meta.ts | showChanges": {
87
+ "message": "Show Changes"
88
+ },
89
+ "changes/ChangesSidebar.ts | sFromSourceMap": {
90
+ "message": "{PH1} (from source map)"
91
+ },
92
+ "changes/ChangesTextEditor.ts | additions": {
93
+ "message": "Addition:{PH1}"
94
+ },
95
+ "changes/ChangesTextEditor.ts | deletions": {
96
+ "message": "Deletion:{PH1}"
97
+ },
98
+ "changes/ChangesView.ts | binaryData": {
99
+ "message": "Binary data"
100
+ },
101
+ "changes/ChangesView.ts | changesDiffViewer": {
102
+ "message": "Changes diff viewer"
103
+ },
104
+ "changes/ChangesView.ts | noChanges": {
105
+ "message": "No changes"
106
+ },
107
+ "changes/ChangesView.ts | revertAllChangesToCurrentFile": {
108
+ "message": "Revert all changes to current file"
109
+ },
110
+ "changes/ChangesView.ts | sDeletion": {
111
+ "message": "{PH1} deletion (-)"
112
+ },
113
+ "changes/ChangesView.ts | sDeletions": {
114
+ "message": "{PH1} deletions (-)"
115
+ },
116
+ "changes/ChangesView.ts | sInsertion": {
117
+ "message": "{PH1} insertion (+),"
118
+ },
119
+ "changes/ChangesView.ts | sInsertions": {
120
+ "message": "{PH1} insertions (+),"
121
+ },
122
+ "changes/ChangesView.ts | SkippingDMatchingLines": {
123
+ "message": "( … Skipping {PH1} matching lines … )"
124
+ },
125
+ "changes/ModuleUIStrings.ts | changesDrawer": {
126
+ "message": "Changes drawer"
127
+ },
128
+ "color_picker/ContrastDetails.js | aa": {
129
+ "message": "AA"
130
+ },
131
+ "color_picker/ContrastDetails.js | aaa": {
132
+ "message": "AAA"
133
+ },
134
+ "color_picker/ContrastDetails.js | apca": {
135
+ "message": "APCA"
136
+ },
137
+ "color_picker/ContrastDetails.js | contrastRatio": {
138
+ "message": "Contrast ratio"
139
+ },
140
+ "color_picker/ContrastDetails.js | noContrastInformationAvailable": {
141
+ "message": "No contrast information available"
142
+ },
143
+ "color_picker/ContrastDetails.js | pickBackgroundColor": {
144
+ "message": "Pick background color"
145
+ },
146
+ "color_picker/ContrastDetails.js | placeholderWithColon": {
147
+ "message": ": {PH1}"
148
+ },
149
+ "color_picker/ContrastDetails.js | showLess": {
150
+ "message": "Show less"
151
+ },
152
+ "color_picker/ContrastDetails.js | showMore": {
153
+ "message": "Show more"
154
+ },
155
+ "color_picker/ContrastDetails.js | toggleBackgroundColorPicker": {
156
+ "message": "Toggle background color picker"
157
+ },
158
+ "color_picker/ContrastDetails.js | useSuggestedColorStoFixLow": {
159
+ "message": "Use suggested color {PH1}to fix low contrast"
160
+ },
161
+ "color_picker/Spectrum.js | addToPalette": {
162
+ "message": "Add to palette"
163
+ },
164
+ "color_picker/Spectrum.js | changeAlpha": {
165
+ "message": "Change alpha"
166
+ },
167
+ "color_picker/Spectrum.js | changeColorFormat": {
168
+ "message": "Change color format"
169
+ },
170
+ "color_picker/Spectrum.js | changeHue": {
171
+ "message": "Change hue"
172
+ },
173
+ "color_picker/Spectrum.js | clearPalette": {
174
+ "message": "Clear palette"
175
+ },
176
+ "color_picker/Spectrum.js | colorPalettes": {
177
+ "message": "Color Palettes"
178
+ },
179
+ "color_picker/Spectrum.js | colorS": {
180
+ "message": "Color {PH1}"
181
+ },
182
+ "color_picker/Spectrum.js | copyColorToClipboard": {
183
+ "message": "Copy color to clipboard"
184
+ },
185
+ "color_picker/Spectrum.js | hex": {
186
+ "message": "HEX"
187
+ },
188
+ "color_picker/Spectrum.js | longclickOrLongpressSpaceToShow": {
189
+ "message": "Long-click or long-press space to show alternate shades of {PH1}"
190
+ },
191
+ "color_picker/Spectrum.js | pressArrowKeysMessage": {
192
+ "message": "Press arrow keys with or without modifiers to move swatch position. Arrow key with Shift key moves position largely, with Ctrl key it is less and with Alt key it is even less"
193
+ },
194
+ "color_picker/Spectrum.js | previewPalettes": {
195
+ "message": "Preview palettes"
196
+ },
197
+ "color_picker/Spectrum.js | removeAllToTheRight": {
198
+ "message": "Remove all to the right"
199
+ },
200
+ "color_picker/Spectrum.js | removeColor": {
201
+ "message": "Remove color"
202
+ },
203
+ "color_picker/Spectrum.js | returnToColorPicker": {
204
+ "message": "Return to color picker"
205
+ },
206
+ "color_picker/Spectrum.js | sInS": {
207
+ "message": "{PH1} in {PH2}"
208
+ },
209
+ "color_picker/Spectrum.js | toggleColorPicker": {
210
+ "message": "Toggle color picker"
211
+ },
212
+ "components/ImagePreview.js | imageFromS": {
213
+ "message": "Image from {PH1}"
214
+ },
215
+ "components/ImagePreview.js | sSPx": {
216
+ "message": "{PH1} × {PH2} px"
217
+ },
218
+ "components/ImagePreview.js | sSPxIntrinsicSSPx": {
219
+ "message": "{PH1} × {PH2} px (intrinsic: {PH3} × {PH4} px)"
220
+ },
221
+ "components/ImagePreview.js | unknownSource": {
222
+ "message": "unknown source"
223
+ },
224
+ "components/JSPresentationUtils.js | addToIgnore": {
225
+ "message": "Add script to ignore list"
226
+ },
227
+ "components/JSPresentationUtils.js | removeFromIgnore": {
228
+ "message": "Remove from ignore list"
229
+ },
230
+ "components/JSPresentationUtils.js | showMoreFrame": {
231
+ "message": "Show 1 more frame"
232
+ },
233
+ "components/JSPresentationUtils.js | showSMoreFrames": {
234
+ "message": "Show {PH1} more frames"
235
+ },
236
+ "components/JSPresentationUtils.js | unknownSource": {
237
+ "message": "unknown"
238
+ },
239
+ "components/Linkifier.js | auto": {
240
+ "message": "auto"
241
+ },
242
+ "components/Linkifier.js | linkHandling": {
243
+ "message": "Link handling:"
244
+ },
245
+ "components/Linkifier.js | openUsingS": {
246
+ "message": "Open using {PH1}"
247
+ },
248
+ "components/Linkifier.js | reveal": {
249
+ "message": "Reveal"
250
+ },
251
+ "components/Linkifier.js | revealInS": {
252
+ "message": "Reveal in {PH1}"
253
+ },
254
+ "components/Linkifier.js | unknown": {
255
+ "message": "(unknown)"
256
+ },
257
+ "components/TargetDetachedDialog.js | websocketDisconnected": {
258
+ "message": "WebSocket disconnected"
259
+ },
260
+ "console_counters/WarningErrorCounter.js | openConsoleToViewS": {
261
+ "message": "Open Console to view {PH1}"
262
+ },
263
+ "console_counters/WarningErrorCounter.js | openIssuesToViewS": {
264
+ "message": "Open Issues to view {PH1}"
265
+ },
266
+ "console_counters/WarningErrorCounter.js | openLighthouseToViewS": {
267
+ "message": "Open Lighthouse to view {PH1}"
268
+ },
269
+ "console_counters/WarningErrorCounter.js | sError": {
270
+ "message": "{PH1} error"
271
+ },
272
+ "console_counters/WarningErrorCounter.js | sErrors": {
273
+ "message": "{PH1} errors"
274
+ },
275
+ "console_counters/WarningErrorCounter.js | sIssue": {
276
+ "message": "{PH1} issue"
277
+ },
278
+ "console_counters/WarningErrorCounter.js | sIssues": {
279
+ "message": "{PH1} issues"
280
+ },
281
+ "console_counters/WarningErrorCounter.js | sViolation": {
282
+ "message": "{PH1} violation"
283
+ },
284
+ "console_counters/WarningErrorCounter.js | sViolations": {
285
+ "message": "{PH1} violations"
286
+ },
287
+ "console_counters/WarningErrorCounter.js | sWarning": {
288
+ "message": "{PH1} warning"
289
+ },
290
+ "console_counters/WarningErrorCounter.js | sWarnings": {
291
+ "message": "{PH1} warnings"
292
+ },
293
+ "cookie_table/CookiesTable.ts | cookies": {
294
+ "message": "Cookies"
295
+ },
296
+ "cookie_table/CookiesTable.ts | editableCookies": {
297
+ "message": "Editable Cookies"
298
+ },
299
+ "cookie_table/CookiesTable.ts | na": {
300
+ "message": "N/A"
301
+ },
302
+ "cookie_table/CookiesTable.ts | name": {
303
+ "message": "Name"
304
+ },
305
+ "cookie_table/CookiesTable.ts | session": {
306
+ "message": "Session"
307
+ },
308
+ "cookie_table/CookiesTable.ts | showIssueAssociatedWithThis": {
309
+ "message": "Show issue associated with this cookie"
310
+ },
311
+ "cookie_table/CookiesTable.ts | showRequestsWithThisCookie": {
312
+ "message": "Show Requests With This Cookie"
313
+ },
314
+ "cookie_table/CookiesTable.ts | size": {
315
+ "message": "Size"
316
+ },
317
+ "cookie_table/CookiesTable.ts | value": {
318
+ "message": "Value"
319
+ },
320
+ "coverage/coverage-meta.ts | coverage": {
321
+ "message": "Coverage"
322
+ },
323
+ "coverage/coverage-meta.ts | instrumentCoverage": {
324
+ "message": "Instrument coverage"
325
+ },
326
+ "coverage/coverage-meta.ts | showCoverage": {
327
+ "message": "Show Coverage"
328
+ },
329
+ "coverage/coverage-meta.ts | startInstrumentingCoverageAnd": {
330
+ "message": "Start instrumenting coverage and reload page"
331
+ },
332
+ "coverage/coverage-meta.ts | stopInstrumentingCoverageAndShow": {
333
+ "message": "Stop instrumenting coverage and show results"
334
+ },
335
+ "coverage/CoverageListView.ts | Byte": {
336
+ "message": "1 byte"
337
+ },
338
+ "coverage/CoverageListView.ts | ByteS": {
339
+ "message": "1 byte, {PH1}"
340
+ },
341
+ "coverage/CoverageListView.ts | codeCoverage": {
342
+ "message": "Code Coverage"
343
+ },
344
+ "coverage/CoverageListView.ts | css": {
345
+ "message": "CSS"
346
+ },
347
+ "coverage/CoverageListView.ts | jsCoverageWithPerBlock": {
348
+ "message": "JS coverage with per block granularity: Once a block of JavaScript was executed, that block is marked as covered."
349
+ },
350
+ "coverage/CoverageListView.ts | jsCoverageWithPerFunction": {
351
+ "message": "JS coverage with per function granularity: Once a function was executed, the whole function is marked as covered."
352
+ },
353
+ "coverage/CoverageListView.ts | jsPerBlock": {
354
+ "message": "JS (per block)"
355
+ },
356
+ "coverage/CoverageListView.ts | jsPerFunction": {
357
+ "message": "JS (per function)"
358
+ },
359
+ "coverage/CoverageListView.ts | sBytes": {
360
+ "message": "{PH1} bytes"
361
+ },
362
+ "coverage/CoverageListView.ts | sBytesS": {
363
+ "message": "{PH1} bytes, {PH2}"
364
+ },
365
+ "coverage/CoverageListView.ts | sBytesSBelongToBlocksOf": {
366
+ "message": "{PH1} bytes ({PH2} %) belong to blocks of JavaScript that have not (yet) been executed."
367
+ },
368
+ "coverage/CoverageListView.ts | sBytesSBelongToBlocksOfJavascript": {
369
+ "message": "{PH1} bytes ({PH2} %) belong to blocks of JavaScript that have executed at least once."
370
+ },
371
+ "coverage/CoverageListView.ts | sBytesSBelongToFunctionsThatHave": {
372
+ "message": "{PH1} bytes ({PH2} %) belong to functions that have not (yet) been executed."
373
+ },
374
+ "coverage/CoverageListView.ts | sBytesSBelongToFunctionsThatHaveExecuted": {
375
+ "message": "{PH1} bytes ({PH2} %) belong to functions that have executed at least once."
376
+ },
377
+ "coverage/CoverageListView.ts | sOfFileUnusedSOfFileUsed": {
378
+ "message": "{PH1} % of file unused, {PH2} % of file used"
379
+ },
380
+ "coverage/CoverageListView.ts | sPercent": {
381
+ "message": "{PH1} %"
382
+ },
383
+ "coverage/CoverageListView.ts | totalBytes": {
384
+ "message": "Total Bytes"
385
+ },
386
+ "coverage/CoverageListView.ts | type": {
387
+ "message": "Type"
388
+ },
389
+ "coverage/CoverageListView.ts | unusedBytes": {
390
+ "message": "Unused Bytes"
391
+ },
392
+ "coverage/CoverageListView.ts | url": {
393
+ "message": "URL"
394
+ },
395
+ "coverage/CoverageListView.ts | usageVisualization": {
396
+ "message": "Usage Visualization"
397
+ },
398
+ "coverage/CoverageView.ts | all": {
399
+ "message": "All"
400
+ },
401
+ "coverage/CoverageView.ts | chooseCoverageGranularityPer": {
402
+ "message": "Choose coverage granularity: Per function has low overhead, per block has significant overhead."
403
+ },
404
+ "coverage/CoverageView.ts | clearAll": {
405
+ "message": "Clear all"
406
+ },
407
+ "coverage/CoverageView.ts | clickTheRecordButtonSToStart": {
408
+ "message": "Click the record button {PH1} to start capturing coverage."
409
+ },
410
+ "coverage/CoverageView.ts | clickTheReloadButtonSToReloadAnd": {
411
+ "message": "Click the reload button {PH1} to reload and start capturing coverage."
412
+ },
413
+ "coverage/CoverageView.ts | contentScripts": {
414
+ "message": "Content scripts"
415
+ },
416
+ "coverage/CoverageView.ts | css": {
417
+ "message": "CSS"
418
+ },
419
+ "coverage/CoverageView.ts | export": {
420
+ "message": "Export..."
421
+ },
422
+ "coverage/CoverageView.ts | filterCoverageByType": {
423
+ "message": "Filter coverage by type"
424
+ },
425
+ "coverage/CoverageView.ts | filteredSTotalS": {
426
+ "message": "Filtered: {PH1} Total: {PH2}"
427
+ },
428
+ "coverage/CoverageView.ts | includeExtensionContentScripts": {
429
+ "message": "Include extension content scripts"
430
+ },
431
+ "coverage/CoverageView.ts | javascript": {
432
+ "message": "JavaScript"
433
+ },
434
+ "coverage/CoverageView.ts | perBlock": {
435
+ "message": "Per block"
436
+ },
437
+ "coverage/CoverageView.ts | perFunction": {
438
+ "message": "Per function"
439
+ },
440
+ "coverage/CoverageView.ts | sOfSSUsedSoFarSUnused": {
441
+ "message": "{PH1} of {PH2} ({PH3}%) used so far,\n {PH4} unused."
442
+ },
443
+ "coverage/CoverageView.ts | urlFilter": {
444
+ "message": "URL filter"
445
+ },
446
+ "css_overview/css_overview-meta.ts | cssOverview": {
447
+ "message": "CSS Overview"
448
+ },
449
+ "css_overview/css_overview-meta.ts | showCssOverview": {
450
+ "message": "Show CSS Overview"
451
+ },
452
+ "css_overview/CSSOverviewCompletedView.js | aa": {
453
+ "message": "AA"
454
+ },
455
+ "css_overview/CSSOverviewCompletedView.js | aaa": {
456
+ "message": "AAA"
457
+ },
458
+ "css_overview/CSSOverviewCompletedView.js | apca": {
459
+ "message": "APCA"
460
+ },
461
+ "css_overview/CSSOverviewCompletedView.js | attributeSelectors": {
462
+ "message": "Attribute selectors"
463
+ },
464
+ "css_overview/CSSOverviewCompletedView.js | backgroundColorsS": {
465
+ "message": "Background colors: {PH1}"
466
+ },
467
+ "css_overview/CSSOverviewCompletedView.js | borderColorsS": {
468
+ "message": "Border colors: {PH1}"
469
+ },
470
+ "css_overview/CSSOverviewCompletedView.js | classSelectors": {
471
+ "message": "Class selectors"
472
+ },
473
+ "css_overview/CSSOverviewCompletedView.js | colors": {
474
+ "message": "Colors"
475
+ },
476
+ "css_overview/CSSOverviewCompletedView.js | contrastIssues": {
477
+ "message": "Contrast issues"
478
+ },
479
+ "css_overview/CSSOverviewCompletedView.js | contrastIssuesS": {
480
+ "message": "Contrast issues: {PH1}"
481
+ },
482
+ "css_overview/CSSOverviewCompletedView.js | contrastRatio": {
483
+ "message": "Contrast ratio"
484
+ },
485
+ "css_overview/CSSOverviewCompletedView.js | cssOverviewElements": {
486
+ "message": "CSS Overview Elements"
487
+ },
488
+ "css_overview/CSSOverviewCompletedView.js | declaration": {
489
+ "message": "Declaration"
490
+ },
491
+ "css_overview/CSSOverviewCompletedView.js | element": {
492
+ "message": "Element"
493
+ },
494
+ "css_overview/CSSOverviewCompletedView.js | elements": {
495
+ "message": "Elements"
496
+ },
497
+ "css_overview/CSSOverviewCompletedView.js | externalStylesheets": {
498
+ "message": "External stylesheets"
499
+ },
500
+ "css_overview/CSSOverviewCompletedView.js | fillColorsS": {
501
+ "message": "Fill colors: {PH1}"
502
+ },
503
+ "css_overview/CSSOverviewCompletedView.js | fontInfo": {
504
+ "message": "Font info"
505
+ },
506
+ "css_overview/CSSOverviewCompletedView.js | idSelectors": {
507
+ "message": "ID selectors"
508
+ },
509
+ "css_overview/CSSOverviewCompletedView.js | inlineStyleElements": {
510
+ "message": "Inline style elements"
511
+ },
512
+ "css_overview/CSSOverviewCompletedView.js | mediaQueries": {
513
+ "message": "Media queries"
514
+ },
515
+ "css_overview/CSSOverviewCompletedView.js | nonsimpleSelectors": {
516
+ "message": "Non-simple selectors"
517
+ },
518
+ "css_overview/CSSOverviewCompletedView.js | occurrence": {
519
+ "message": "occurrence"
520
+ },
521
+ "css_overview/CSSOverviewCompletedView.js | occurrences": {
522
+ "message": "occurrences"
523
+ },
524
+ "css_overview/CSSOverviewCompletedView.js | overviewSummary": {
525
+ "message": "Overview summary"
526
+ },
527
+ "css_overview/CSSOverviewCompletedView.js | showElement": {
528
+ "message": "Show element"
529
+ },
530
+ "css_overview/CSSOverviewCompletedView.js | source": {
531
+ "message": "Source"
532
+ },
533
+ "css_overview/CSSOverviewCompletedView.js | sS": {
534
+ "message": "{PH1} {PH2}"
535
+ },
536
+ "css_overview/CSSOverviewCompletedView.js | styleRules": {
537
+ "message": "Style rules"
538
+ },
539
+ "css_overview/CSSOverviewCompletedView.js | textColorSOverSBackgroundResults": {
540
+ "message": "Text color {PH1} over {PH2} background results in low contrast for {PH3} elements"
541
+ },
542
+ "css_overview/CSSOverviewCompletedView.js | textColorsS": {
543
+ "message": "Text colors: {PH1}"
544
+ },
545
+ "css_overview/CSSOverviewCompletedView.js | thereAreNoFonts": {
546
+ "message": "There are no fonts."
547
+ },
548
+ "css_overview/CSSOverviewCompletedView.js | thereAreNoMediaQueries": {
549
+ "message": "There are no media queries."
550
+ },
551
+ "css_overview/CSSOverviewCompletedView.js | thereAreNoUnusedDeclarations": {
552
+ "message": "There are no unused declarations."
553
+ },
554
+ "css_overview/CSSOverviewCompletedView.js | typeSelectors": {
555
+ "message": "Type selectors"
556
+ },
557
+ "css_overview/CSSOverviewCompletedView.js | universalSelectors": {
558
+ "message": "Universal selectors"
559
+ },
560
+ "css_overview/CSSOverviewCompletedView.js | unusedDeclarations": {
561
+ "message": "Unused declarations"
562
+ },
563
+ "css_overview/CSSOverviewProcessingView.js | cancel": {
564
+ "message": "Cancel"
565
+ },
566
+ "css_overview/CSSOverviewSidebarPanel.js | clearOverview": {
567
+ "message": "Clear overview"
568
+ },
569
+ "css_overview/CSSOverviewStartView.js | captureOverview": {
570
+ "message": "Capture overview"
571
+ },
572
+ "css_overview/CSSOverviewStartView.js | cssOverview": {
573
+ "message": "CSS Overview"
574
+ },
575
+ "css_overview/CSSOverviewUnusedDeclarations.js | bottomAppliedToAStatically": {
576
+ "message": "Bottom applied to a statically positioned element"
577
+ },
578
+ "css_overview/CSSOverviewUnusedDeclarations.js | heightAppliedToAnInlineElement": {
579
+ "message": "Height applied to an inline element"
580
+ },
581
+ "css_overview/CSSOverviewUnusedDeclarations.js | leftAppliedToAStatically": {
582
+ "message": "Left applied to a statically positioned element"
583
+ },
584
+ "css_overview/CSSOverviewUnusedDeclarations.js | rightAppliedToAStatically": {
585
+ "message": "Right applied to a statically positioned element"
586
+ },
587
+ "css_overview/CSSOverviewUnusedDeclarations.js | topAppliedToAStatically": {
588
+ "message": "Top applied to a statically positioned element"
589
+ },
590
+ "css_overview/CSSOverviewUnusedDeclarations.js | verticalAlignmentAppliedTo": {
591
+ "message": "Vertical alignment applied to element which is neither inline nor table-cell"
592
+ },
593
+ "css_overview/CSSOverviewUnusedDeclarations.js | widthAppliedToAnInlineElement": {
594
+ "message": "Width applied to an inline element"
595
+ },
596
+ "developer_resources/developer_resources-meta.ts | developerResources": {
597
+ "message": "Developer Resources"
598
+ },
599
+ "developer_resources/developer_resources-meta.ts | showDeveloperResources": {
600
+ "message": "Show Developer Resources"
601
+ },
602
+ "developer_resources/DeveloperResourcesListView.ts | Byte": {
603
+ "message": "1 byte"
604
+ },
605
+ "developer_resources/DeveloperResourcesListView.ts | copyInitiatorUrl": {
606
+ "message": "Copy initiator URL"
607
+ },
608
+ "developer_resources/DeveloperResourcesListView.ts | copyUrl": {
609
+ "message": "Copy URL"
610
+ },
611
+ "developer_resources/DeveloperResourcesListView.ts | developerResources": {
612
+ "message": "Developer Resources"
613
+ },
614
+ "developer_resources/DeveloperResourcesListView.ts | error": {
615
+ "message": "Error"
616
+ },
617
+ "developer_resources/DeveloperResourcesListView.ts | failure": {
618
+ "message": "failure"
619
+ },
620
+ "developer_resources/DeveloperResourcesListView.ts | initiator": {
621
+ "message": "Initiator"
622
+ },
623
+ "developer_resources/DeveloperResourcesListView.ts | pending": {
624
+ "message": "pending"
625
+ },
626
+ "developer_resources/DeveloperResourcesListView.ts | sBytes": {
627
+ "message": "{PH1} bytes"
628
+ },
629
+ "developer_resources/DeveloperResourcesListView.ts | status": {
630
+ "message": "Status"
631
+ },
632
+ "developer_resources/DeveloperResourcesListView.ts | success": {
633
+ "message": "success"
634
+ },
635
+ "developer_resources/DeveloperResourcesListView.ts | totalBytes": {
636
+ "message": "Total Bytes"
637
+ },
638
+ "developer_resources/DeveloperResourcesListView.ts | url": {
639
+ "message": "URL"
640
+ },
641
+ "developer_resources/DeveloperResourcesView.ts | enableLoadingThroughTarget": {
642
+ "message": "Enable loading through target"
643
+ },
644
+ "developer_resources/DeveloperResourcesView.ts | enterTextToSearchTheUrlAndError": {
645
+ "message": "Enter text to search the URL and Error columns"
646
+ },
647
+ "developer_resources/DeveloperResourcesView.ts | loadHttpsDeveloperResources": {
648
+ "message": "Load HTTP(S) developer resources through the inspected target"
649
+ },
650
+ "developer_resources/DeveloperResourcesView.ts | resources": {
651
+ "message": "{PH1} resources"
652
+ },
653
+ "developer_resources/DeveloperResourcesView.ts | resourcesCurrentlyLoading": {
654
+ "message": "{PH1} resources, {PH2} currently loading"
655
+ },
656
+ "event_listeners/EventListenersView.ts | deleteEventListener": {
657
+ "message": "Delete event listener"
658
+ },
659
+ "event_listeners/EventListenersView.ts | noEventListeners": {
660
+ "message": "No event listeners"
661
+ },
662
+ "event_listeners/EventListenersView.ts | passive": {
663
+ "message": "Passive"
664
+ },
665
+ "event_listeners/EventListenersView.ts | remove": {
666
+ "message": "Remove"
667
+ },
668
+ "event_listeners/EventListenersView.ts | revealInElementsPanel": {
669
+ "message": "Reveal in Elements panel"
670
+ },
671
+ "event_listeners/EventListenersView.ts | togglePassive": {
672
+ "message": "Toggle Passive"
673
+ },
674
+ "event_listeners/EventListenersView.ts | toggleWhetherEventListenerIs": {
675
+ "message": "Toggle whether event listener is passive or blocking"
676
+ },
677
+ "help/help-meta.ts | showWhatsNew": {
678
+ "message": "Show What's New"
679
+ },
680
+ "help/help-meta.ts | whatsNew": {
681
+ "message": "What's New"
682
+ },
683
+ "help/ModuleUIStrings.ts | appearance": {
684
+ "message": "Appearance"
685
+ },
686
+ "help/ModuleUIStrings.ts | bug": {
687
+ "message": "bug"
688
+ },
689
+ "help/ModuleUIStrings.ts | doNotShowWhatsNewAfterEachUpdate": {
690
+ "message": "Do not show What's New after each update"
691
+ },
692
+ "help/ModuleUIStrings.ts | help": {
693
+ "message": "Help"
694
+ },
695
+ "help/ModuleUIStrings.ts | releaseNotes": {
696
+ "message": "Release notes"
697
+ },
698
+ "help/ModuleUIStrings.ts | reportADevtoolsIssue": {
699
+ "message": "Report a DevTools issue"
700
+ },
701
+ "help/ModuleUIStrings.ts | showWhatsNewAfterEachUpdate": {
702
+ "message": "Show What's New after each update"
703
+ },
704
+ "help/ReleaseNoteView.ts | close": {
705
+ "message": "Close"
706
+ },
707
+ "help/ReleaseNoteView.ts | learnMore": {
708
+ "message": "Learn more"
709
+ },
710
+ "help/ReleaseNoteView.ts | s": {
711
+ "message": "{PH1}"
712
+ },
713
+ "inline_editor/ColorSwatch.ts | shiftclickToChangeColorFormat": {
714
+ "message": "Shift-click to change color format"
715
+ },
716
+ "inline_editor/CSSShadowEditor.js | blur": {
717
+ "message": "Blur"
718
+ },
719
+ "inline_editor/CSSShadowEditor.js | inset": {
720
+ "message": "Inset"
721
+ },
722
+ "inline_editor/CSSShadowEditor.js | outset": {
723
+ "message": "Outset"
724
+ },
725
+ "inline_editor/CSSShadowEditor.js | spread": {
726
+ "message": "Spread"
727
+ },
728
+ "inline_editor/CSSShadowEditor.js | type": {
729
+ "message": "Type"
730
+ },
731
+ "inline_editor/CSSShadowEditor.js | xOffset": {
732
+ "message": "X offset"
733
+ },
734
+ "inline_editor/CSSShadowEditor.js | yOffset": {
735
+ "message": "Y offset"
736
+ },
737
+ "inline_editor/CSSVarSwatch.ts | jumpToDefinition": {
738
+ "message": "Jump to definition"
739
+ },
740
+ "inline_editor/CSSVarSwatch.ts | sIsNotDefined": {
741
+ "message": "{PH1} is not defined"
742
+ },
743
+ "inline_editor/FontEditor.js | cssProperties": {
744
+ "message": "CSS Properties"
745
+ },
746
+ "inline_editor/FontEditor.js | deleteS": {
747
+ "message": "Delete {PH1}"
748
+ },
749
+ "inline_editor/FontEditor.js | fallbackS": {
750
+ "message": "Fallback {PH1}"
751
+ },
752
+ "inline_editor/FontEditor.js | fontFamily": {
753
+ "message": "Font Family"
754
+ },
755
+ "inline_editor/FontEditor.js | fontSelectorDeletedAtIndexS": {
756
+ "message": "Font Selector deleted at index: {PH1}"
757
+ },
758
+ "inline_editor/FontEditor.js | fontSize": {
759
+ "message": "Font Size"
760
+ },
761
+ "inline_editor/FontEditor.js | fontWeight": {
762
+ "message": "Font Weight"
763
+ },
764
+ "inline_editor/FontEditor.js | lineHeight": {
765
+ "message": "Line Height"
766
+ },
767
+ "inline_editor/FontEditor.js | PleaseEnterAValidValueForSText": {
768
+ "message": "* Please enter a valid value for {PH1} text input"
769
+ },
770
+ "inline_editor/FontEditor.js | selectorInputMode": {
771
+ "message": "Selector Input Mode"
772
+ },
773
+ "inline_editor/FontEditor.js | sKeyValueSelector": {
774
+ "message": "{PH1} Key Value Selector"
775
+ },
776
+ "inline_editor/FontEditor.js | sliderInputMode": {
777
+ "message": "Slider Input Mode"
778
+ },
779
+ "inline_editor/FontEditor.js | spacing": {
780
+ "message": "Spacing"
781
+ },
782
+ "inline_editor/FontEditor.js | sSliderInput": {
783
+ "message": "{PH1} Slider Input"
784
+ },
785
+ "inline_editor/FontEditor.js | sTextInput": {
786
+ "message": "{PH1} Text Input"
787
+ },
788
+ "inline_editor/FontEditor.js | sToggleInputType": {
789
+ "message": "{PH1} toggle input type"
790
+ },
791
+ "inline_editor/FontEditor.js | sUnitInput": {
792
+ "message": "{PH1} Unit Input"
793
+ },
794
+ "inline_editor/FontEditor.js | thereIsNoValueToDeleteAtIndexS": {
795
+ "message": "There is no value to delete at index: {PH1}"
796
+ },
797
+ "inline_editor/FontEditor.js | thisPropertyIsSetToContainUnits": {
798
+ "message": "This property is set to contain units but does not have a defined corresponding unitsArray: {PH1}"
799
+ },
800
+ "inline_editor/FontEditor.js | units": {
801
+ "message": "Units"
802
+ },
803
+ "input/InputTimeline.ts | clearAll": {
804
+ "message": "Clear all"
805
+ },
806
+ "input/InputTimeline.ts | loadProfile": {
807
+ "message": "Load profile…"
808
+ },
809
+ "input/InputTimeline.ts | saveProfile": {
810
+ "message": "Save profile…"
811
+ },
812
+ "input/ModuleUIStrings.ts | inputs": {
813
+ "message": "Inputs"
814
+ },
815
+ "input/ModuleUIStrings.ts | pause": {
816
+ "message": "Pause"
817
+ },
818
+ "input/ModuleUIStrings.ts | resume": {
819
+ "message": "Resume"
820
+ },
821
+ "input/ModuleUIStrings.ts | startRecording": {
822
+ "message": "Start recording"
823
+ },
824
+ "input/ModuleUIStrings.ts | startReplaying": {
825
+ "message": "Start replaying"
826
+ },
827
+ "input/ModuleUIStrings.ts | stopRecording": {
828
+ "message": "Stop recording"
829
+ },
830
+ "js_profiler/js_profiler-meta.ts | profiler": {
831
+ "message": "Profiler"
832
+ },
833
+ "js_profiler/js_profiler-meta.ts | showProfiler": {
834
+ "message": "Show Profiler"
835
+ },
836
+ "layer_viewer/LayerDetailsView.ts | compositingReasons": {
837
+ "message": "Compositing Reasons"
838
+ },
839
+ "layer_viewer/LayerDetailsView.ts | containingBlocRectangleDimensions": {
840
+ "message": "Containing Block {PH1} × {PH2} (at {PH3}, {PH4})"
841
+ },
842
+ "layer_viewer/LayerDetailsView.ts | hasABackdropFilter": {
843
+ "message": "Has a backdrop filter."
844
+ },
845
+ "layer_viewer/LayerDetailsView.ts | hasABlendingEffectThatNeedsToBe": {
846
+ "message": "Has a blending effect that needs to be known by compositor because of composited descendants."
847
+ },
848
+ "layer_viewer/LayerDetailsView.ts | hasAClipThatNeedsToBeKnownBy": {
849
+ "message": "Has a clip that needs to be known by compositor because of composited descendants."
850
+ },
851
+ "layer_viewer/LayerDetailsView.ts | hasADTransform": {
852
+ "message": "Has a 3d transform."
853
+ },
854
+ "layer_viewer/LayerDetailsView.ts | hasAFilterEffectThatNeedsToBe": {
855
+ "message": "Has a filter effect that needs to be known by compositor because of composited descendants."
856
+ },
857
+ "layer_viewer/LayerDetailsView.ts | hasAMaskThatNeedsToBeKnownBy": {
858
+ "message": "Has a mask that needs to be known by compositor because of composited descendants."
859
+ },
860
+ "layer_viewer/LayerDetailsView.ts | hasAnActiveAcceleratedBackdrop": {
861
+ "message": "Has an active accelerated backdrop filter animation or transition."
862
+ },
863
+ "layer_viewer/LayerDetailsView.ts | hasAnActiveAcceleratedFilter": {
864
+ "message": "Has an active accelerated filter animation or transition."
865
+ },
866
+ "layer_viewer/LayerDetailsView.ts | hasAnActiveAcceleratedOpacity": {
867
+ "message": "Has an active accelerated opacity animation or transition."
868
+ },
869
+ "layer_viewer/LayerDetailsView.ts | hasAnActiveAcceleratedTransform": {
870
+ "message": "Has an active accelerated transform animation or transition."
871
+ },
872
+ "layer_viewer/LayerDetailsView.ts | hasAPerspectiveTransformThat": {
873
+ "message": "Has a perspective transform that needs to be known by compositor because of 3d descendants."
874
+ },
875
+ "layer_viewer/LayerDetailsView.ts | hasAPreservesdPropertyThatNeeds": {
876
+ "message": "Has a preserves-3d property that needs to be known by compositor because of 3d descendants."
877
+ },
878
+ "layer_viewer/LayerDetailsView.ts | hasAReflectionThatNeedsToBeKnown": {
879
+ "message": "Has a reflection that needs to be known by compositor because of composited descendants."
880
+ },
881
+ "layer_viewer/LayerDetailsView.ts | hasAWillchangeCompositingHint": {
882
+ "message": "Has a will-change compositing hint other than transform and opacity."
883
+ },
884
+ "layer_viewer/LayerDetailsView.ts | hasAWillchangeOpacityCompositing": {
885
+ "message": "Has a will-change: opacity compositing hint."
886
+ },
887
+ "layer_viewer/LayerDetailsView.ts | hasAWillchangeTransform": {
888
+ "message": "Has a will-change: transform compositing hint."
889
+ },
890
+ "layer_viewer/LayerDetailsView.ts | hasBackfacevisibilityHidden": {
891
+ "message": "Has backface-visibility: hidden."
892
+ },
893
+ "layer_viewer/LayerDetailsView.ts | hasClippingAncestor": {
894
+ "message": "Has clipping ancestor."
895
+ },
896
+ "layer_viewer/LayerDetailsView.ts | hasOpacityThatNeedsToBeAppliedBy": {
897
+ "message": "Has opacity that needs to be applied by compositor because of composited descendants."
898
+ },
899
+ "layer_viewer/LayerDetailsView.ts | isAnAcceleratedCanvasOrIsA": {
900
+ "message": "Is an accelerated canvas, or is a display list backed canvas that was promoted to a layer based on a performance heuristic."
901
+ },
902
+ "layer_viewer/LayerDetailsView.ts | isAnAcceleratedIframe": {
903
+ "message": "Is an accelerated iFrame."
904
+ },
905
+ "layer_viewer/LayerDetailsView.ts | isAnAcceleratedPlugin": {
906
+ "message": "Is an accelerated plugin."
907
+ },
908
+ "layer_viewer/LayerDetailsView.ts | isAnAcceleratedVideo": {
909
+ "message": "Is an accelerated video."
910
+ },
911
+ "layer_viewer/LayerDetailsView.ts | isAPositionfixedElementWith": {
912
+ "message": "Is a position:fixed element with composited descendants."
913
+ },
914
+ "layer_viewer/LayerDetailsView.ts | isAScrollableOverflowElement": {
915
+ "message": "Is a scrollable overflow element."
916
+ },
917
+ "layer_viewer/LayerDetailsView.ts | isDomOverlayForWebxrImmersivear": {
918
+ "message": "Is DOM overlay for WebXR immersive-ar mode."
919
+ },
920
+ "layer_viewer/LayerDetailsView.ts | isFixedOrStickyPosition": {
921
+ "message": "Is fixed or sticky position."
922
+ },
923
+ "layer_viewer/LayerDetailsView.ts | isOverlayControlsForVideo": {
924
+ "message": "Is overlay controls for video."
925
+ },
926
+ "layer_viewer/LayerDetailsView.ts | isTheDocumentrootscroller": {
927
+ "message": "Is the document.rootScroller."
928
+ },
929
+ "layer_viewer/LayerDetailsView.ts | isTheRootLayer": {
930
+ "message": "Is the root layer."
931
+ },
932
+ "layer_viewer/LayerDetailsView.ts | layerForLinkHighlightFrame": {
933
+ "message": "Layer for link highlight, frame overlay, etc."
934
+ },
935
+ "layer_viewer/LayerDetailsView.ts | layerPaintedOnTopOfOtherLayersAs": {
936
+ "message": "Layer painted on top of other layers as decoration."
937
+ },
938
+ "layer_viewer/LayerDetailsView.ts | layerWasSeparatelyComposited": {
939
+ "message": "Layer was separately composited because it could not be squashed."
940
+ },
941
+ "layer_viewer/LayerDetailsView.ts | mainThreadScrollingReason": {
942
+ "message": "Main thread scrolling reason"
943
+ },
944
+ "layer_viewer/LayerDetailsView.ts | memoryEstimate": {
945
+ "message": "Memory estimate"
946
+ },
947
+ "layer_viewer/LayerDetailsView.ts | mightOverlapOtherComposited": {
948
+ "message": "Might overlap other composited content."
949
+ },
950
+ "layer_viewer/LayerDetailsView.ts | nearestLayerShiftingContaining": {
951
+ "message": "Nearest Layer Shifting Containing Block"
952
+ },
953
+ "layer_viewer/LayerDetailsView.ts | nearestLayerShiftingStickyBox": {
954
+ "message": "Nearest Layer Shifting Sticky Box"
955
+ },
956
+ "layer_viewer/LayerDetailsView.ts | nonFastScrollable": {
957
+ "message": "Non fast scrollable"
958
+ },
959
+ "layer_viewer/LayerDetailsView.ts | overlapsOtherCompositedContent": {
960
+ "message": "Overlaps other composited content."
961
+ },
962
+ "layer_viewer/LayerDetailsView.ts | paintCount": {
963
+ "message": "Paint count"
964
+ },
965
+ "layer_viewer/LayerDetailsView.ts | paintProfiler": {
966
+ "message": "Paint Profiler"
967
+ },
968
+ "layer_viewer/LayerDetailsView.ts | parentWithCompositedNegative": {
969
+ "message": "Parent with composited negative z-index content."
970
+ },
971
+ "layer_viewer/LayerDetailsView.ts | repaintsOnScroll": {
972
+ "message": "Repaints on scroll"
973
+ },
974
+ "layer_viewer/LayerDetailsView.ts | scrollParentIsNotAnAncestor": {
975
+ "message": "Scroll parent is not an ancestor."
976
+ },
977
+ "layer_viewer/LayerDetailsView.ts | scrollRectangleDimensions": {
978
+ "message": "{PH1} {PH2} × {PH3} (at {PH4}, {PH5})"
979
+ },
980
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerHomeForAGroupOf": {
981
+ "message": "Secondary layer, home for a group of squashable content."
982
+ },
983
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerNoopLayerToPlace": {
984
+ "message": "Secondary layer, no-op layer to place the squashing layer correctly in the composited layer tree."
985
+ },
986
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerTheHorizontal": {
987
+ "message": "Secondary layer, the horizontal scrollbar layer."
988
+ },
989
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerTheOverflow": {
990
+ "message": "Secondary layer, the overflow controls host layer."
991
+ },
992
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerTheScrollCorner": {
993
+ "message": "Secondary layer, the scroll corner layer."
994
+ },
995
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerTheVertical": {
996
+ "message": "Secondary layer, the vertical scrollbar layer."
997
+ },
998
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerToContainAnyNormal": {
999
+ "message": "Secondary layer, to contain any normal flow and positive z-index contents on top of a negative z-index layer."
1000
+ },
1001
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerToContainTheMask": {
1002
+ "message": "Secondary layer, to contain the mask contents."
1003
+ },
1004
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerToHouseContents": {
1005
+ "message": "Secondary layer, to house contents that can be scrolled."
1006
+ },
1007
+ "layer_viewer/LayerDetailsView.ts | secondaryLayerUsedToPositionThe": {
1008
+ "message": "Secondary layer, used to position the scrolling contents while scrolling."
1009
+ },
1010
+ "layer_viewer/LayerDetailsView.ts | selectALayerToSeeItsDetails": {
1011
+ "message": "Select a layer to see its details"
1012
+ },
1013
+ "layer_viewer/LayerDetailsView.ts | shouldIsolateDescendantsToApplyA": {
1014
+ "message": "Should isolate descendants to apply a blend effect."
1015
+ },
1016
+ "layer_viewer/LayerDetailsView.ts | size": {
1017
+ "message": "Size"
1018
+ },
1019
+ "layer_viewer/LayerDetailsView.ts | slowScrollRegions": {
1020
+ "message": "Slow scroll regions"
1021
+ },
1022
+ "layer_viewer/LayerDetailsView.ts | stickyAncenstorLayersS": {
1023
+ "message": "{PH1}: {PH2} ({PH3})"
1024
+ },
1025
+ "layer_viewer/LayerDetailsView.ts | stickyBoxRectangleDimensions": {
1026
+ "message": "Sticky Box {PH1} × {PH2} (at {PH3}, {PH4})"
1027
+ },
1028
+ "layer_viewer/LayerDetailsView.ts | stickyPositionConstraint": {
1029
+ "message": "Sticky position constraint"
1030
+ },
1031
+ "layer_viewer/LayerDetailsView.ts | touchEventHandler": {
1032
+ "message": "Touch event handler"
1033
+ },
1034
+ "layer_viewer/LayerDetailsView.ts | unnamed": {
1035
+ "message": "<unnamed>"
1036
+ },
1037
+ "layer_viewer/LayerDetailsView.ts | updateRectangleDimensions": {
1038
+ "message": "{PH1} × {PH2} (at {PH3},{PH4})"
1039
+ },
1040
+ "layer_viewer/LayerDetailsView.ts | wheelEventHandler": {
1041
+ "message": "Wheel event handler"
1042
+ },
1043
+ "layer_viewer/Layers3DView.ts | cantDisplayLayers": {
1044
+ "message": "Can't display layers,"
1045
+ },
1046
+ "layer_viewer/Layers3DView.ts | checkSForPossibleReasons": {
1047
+ "message": "Check {PH1} for possible reasons."
1048
+ },
1049
+ "layer_viewer/Layers3DView.ts | dLayersView": {
1050
+ "message": "3D Layers View"
1051
+ },
1052
+ "layer_viewer/Layers3DView.ts | layerInformationIsNotYet": {
1053
+ "message": "Layer information is not yet available."
1054
+ },
1055
+ "layer_viewer/Layers3DView.ts | mousewheelEventListener": {
1056
+ "message": "mousewheel event listener"
1057
+ },
1058
+ "layer_viewer/Layers3DView.ts | paints": {
1059
+ "message": "Paints"
1060
+ },
1061
+ "layer_viewer/Layers3DView.ts | repaintsOnScroll": {
1062
+ "message": "repaints on scroll"
1063
+ },
1064
+ "layer_viewer/Layers3DView.ts | resetView": {
1065
+ "message": "Reset View"
1066
+ },
1067
+ "layer_viewer/Layers3DView.ts | showPaintProfiler": {
1068
+ "message": "Show Paint Profiler"
1069
+ },
1070
+ "layer_viewer/Layers3DView.ts | slowScrollRects": {
1071
+ "message": "Slow scroll rects"
1072
+ },
1073
+ "layer_viewer/Layers3DView.ts | touchEventListener": {
1074
+ "message": "touch event listener"
1075
+ },
1076
+ "layer_viewer/Layers3DView.ts | webglSupportIsDisabledInYour": {
1077
+ "message": "WebGL support is disabled in your browser."
1078
+ },
1079
+ "layer_viewer/LayerTreeOutline.ts | layersTreePane": {
1080
+ "message": "Layers Tree Pane"
1081
+ },
1082
+ "layer_viewer/LayerTreeOutline.ts | showPaintProfiler": {
1083
+ "message": "Show Paint Profiler"
1084
+ },
1085
+ "layer_viewer/LayerTreeOutline.ts | updateChildDimension": {
1086
+ "message": " ({PH1} × {PH2})"
1087
+ },
1088
+ "layer_viewer/LayerViewHost.ts | showInternalLayers": {
1089
+ "message": "Show internal layers"
1090
+ },
1091
+ "layer_viewer/ModuleUIStrings.ts | layers": {
1092
+ "message": "Layers"
1093
+ },
1094
+ "layer_viewer/ModuleUIStrings.ts | panOrRotateDown": {
1095
+ "message": "Pan or rotate down"
1096
+ },
1097
+ "layer_viewer/ModuleUIStrings.ts | panOrRotateLeft": {
1098
+ "message": "Pan or rotate left"
1099
+ },
1100
+ "layer_viewer/ModuleUIStrings.ts | panOrRotateRight": {
1101
+ "message": "Pan or rotate right"
1102
+ },
1103
+ "layer_viewer/ModuleUIStrings.ts | panOrRotateUp": {
1104
+ "message": "Pan or rotate up"
1105
+ },
1106
+ "layer_viewer/ModuleUIStrings.ts | resetView": {
1107
+ "message": "Reset view"
1108
+ },
1109
+ "layer_viewer/ModuleUIStrings.ts | switchToPanMode": {
1110
+ "message": "Switch to pan mode"
1111
+ },
1112
+ "layer_viewer/ModuleUIStrings.ts | switchToRotateMode": {
1113
+ "message": "Switch to rotate mode"
1114
+ },
1115
+ "layer_viewer/ModuleUIStrings.ts | zoomIn": {
1116
+ "message": "Zoom in"
1117
+ },
1118
+ "layer_viewer/ModuleUIStrings.ts | zoomOut": {
1119
+ "message": "Zoom out"
1120
+ },
1121
+ "layer_viewer/PaintProfilerView.ts | bitmap": {
1122
+ "message": "Bitmap"
1123
+ },
1124
+ "layer_viewer/PaintProfilerView.ts | commandLog": {
1125
+ "message": "Command Log"
1126
+ },
1127
+ "layer_viewer/PaintProfilerView.ts | misc": {
1128
+ "message": "Misc"
1129
+ },
1130
+ "layer_viewer/PaintProfilerView.ts | profiling": {
1131
+ "message": "Profiling…"
1132
+ },
1133
+ "layer_viewer/PaintProfilerView.ts | profilingResults": {
1134
+ "message": "Profiling results"
1135
+ },
1136
+ "layer_viewer/PaintProfilerView.ts | shapes": {
1137
+ "message": "Shapes"
1138
+ },
1139
+ "layer_viewer/PaintProfilerView.ts | text": {
1140
+ "message": "Text"
1141
+ },
1142
+ "layer_viewer/TransformController.ts | panModeX": {
1143
+ "message": "Pan mode (X)"
1144
+ },
1145
+ "layer_viewer/TransformController.ts | resetTransform": {
1146
+ "message": "Reset transform (0)"
1147
+ },
1148
+ "layer_viewer/TransformController.ts | rotateModeV": {
1149
+ "message": "Rotate mode (V)"
1150
+ },
1151
+ "layers/layers-meta.ts | layers": {
1152
+ "message": "Layers"
1153
+ },
1154
+ "layers/layers-meta.ts | showLayers": {
1155
+ "message": "Show Layers"
1156
+ },
1157
+ "layers/LayersPanel.ts | details": {
1158
+ "message": "Details"
1159
+ },
1160
+ "layers/LayersPanel.ts | profiler": {
1161
+ "message": "Profiler"
1162
+ },
1163
+ "lighthouse/lighthouse-meta.ts | lighthouse": {
1164
+ "message": "Lighthouse"
1165
+ },
1166
+ "lighthouse/lighthouse-meta.ts | lighthouseTag": {
1167
+ "message": "lighthouse"
1168
+ },
1169
+ "lighthouse/lighthouse-meta.ts | pwa": {
1170
+ "message": "pwa"
1171
+ },
1172
+ "lighthouse/lighthouse-meta.ts | showLighthouse": {
1173
+ "message": "Show Lighthouse"
1174
+ },
1175
+ "lighthouse/LighthouseController.ts | accessibility": {
1176
+ "message": "Accessibility"
1177
+ },
1178
+ "lighthouse/LighthouseController.ts | applyMobileEmulation": {
1179
+ "message": "Apply mobile emulation"
1180
+ },
1181
+ "lighthouse/LighthouseController.ts | applyMobileEmulationDuring": {
1182
+ "message": "Apply mobile emulation during auditing"
1183
+ },
1184
+ "lighthouse/LighthouseController.ts | atLeastOneCategoryMustBeSelected": {
1185
+ "message": "At least one category must be selected."
1186
+ },
1187
+ "lighthouse/LighthouseController.ts | bestPractices": {
1188
+ "message": "Best practices"
1189
+ },
1190
+ "lighthouse/LighthouseController.ts | canOnlyAuditHttphttpsPagesAnd": {
1191
+ "message": "Can only audit HTTP/HTTPS pages and Chrome extensions. Navigate to a different page to start an audit."
1192
+ },
1193
+ "lighthouse/LighthouseController.ts | clearStorage": {
1194
+ "message": "Clear storage"
1195
+ },
1196
+ "lighthouse/LighthouseController.ts | desktop": {
1197
+ "message": "Desktop"
1198
+ },
1199
+ "lighthouse/LighthouseController.ts | doesThisPageFollowBestPractices": {
1200
+ "message": "Does this page follow best practices for modern web development"
1201
+ },
1202
+ "lighthouse/LighthouseController.ts | doesThisPageMeetTheStandardOfA": {
1203
+ "message": "Does this page meet the standard of a Progressive Web App"
1204
+ },
1205
+ "lighthouse/LighthouseController.ts | howLongDoesThisAppTakeToShow": {
1206
+ "message": "How long does this app take to show content and become usable"
1207
+ },
1208
+ "lighthouse/LighthouseController.ts | indexeddb": {
1209
+ "message": "IndexedDB"
1210
+ },
1211
+ "lighthouse/LighthouseController.ts | isThisPageOptimizedForAdSpeedAnd": {
1212
+ "message": "Is this page optimized for ad speed and quality"
1213
+ },
1214
+ "lighthouse/LighthouseController.ts | isThisPageOptimizedForSearch": {
1215
+ "message": "Is this page optimized for search engine results ranking"
1216
+ },
1217
+ "lighthouse/LighthouseController.ts | isThisPageUsableByPeopleWith": {
1218
+ "message": "Is this page usable by people with disabilities or impairments"
1219
+ },
1220
+ "lighthouse/LighthouseController.ts | localStorage": {
1221
+ "message": "Local Storage"
1222
+ },
1223
+ "lighthouse/LighthouseController.ts | mobile": {
1224
+ "message": "Mobile"
1225
+ },
1226
+ "lighthouse/LighthouseController.ts | multipleTabsAreBeingControlledBy": {
1227
+ "message": "Multiple tabs are being controlled by the same service worker. Close your other tabs on the same origin to audit this page."
1228
+ },
1229
+ "lighthouse/LighthouseController.ts | performance": {
1230
+ "message": "Performance"
1231
+ },
1232
+ "lighthouse/LighthouseController.ts | progressiveWebApp": {
1233
+ "message": "Progressive Web App"
1234
+ },
1235
+ "lighthouse/LighthouseController.ts | publisherAds": {
1236
+ "message": "Publisher Ads"
1237
+ },
1238
+ "lighthouse/LighthouseController.ts | resetStorageLocalstorage": {
1239
+ "message": "Reset storage (localStorage, IndexedDB, etc) before auditing. (Good for performance & PWA testing)"
1240
+ },
1241
+ "lighthouse/LighthouseController.ts | seo": {
1242
+ "message": "SEO"
1243
+ },
1244
+ "lighthouse/LighthouseController.ts | simulateASlowerPageLoadBasedOn": {
1245
+ "message": "Simulate a slower page load, based on data from an initial unthrottled load. If disabled, the page is actually slowed with applied throttling."
1246
+ },
1247
+ "lighthouse/LighthouseController.ts | simulatedThrottling": {
1248
+ "message": "Simulated throttling"
1249
+ },
1250
+ "lighthouse/LighthouseController.ts | thereMayBeStoredDataAffectingLoadingPlural": {
1251
+ "message": "There may be stored data affecting loading performance in these locations: {PH1}. Audit this page in an incognito window to prevent those resources from affecting your scores."
1252
+ },
1253
+ "lighthouse/LighthouseController.ts | thereMayBeStoredDataAffectingSingular": {
1254
+ "message": "There may be stored data affecting loading performance in this location: {PH1}. Audit this page in an incognito window to prevent those resources from affecting your scores."
1255
+ },
1256
+ "lighthouse/LighthouseController.ts | webSql": {
1257
+ "message": "Web SQL"
1258
+ },
1259
+ "lighthouse/LighthousePanel.ts | cancelling": {
1260
+ "message": "Cancelling"
1261
+ },
1262
+ "lighthouse/LighthousePanel.ts | clearAll": {
1263
+ "message": "Clear all"
1264
+ },
1265
+ "lighthouse/LighthousePanel.ts | dropLighthouseJsonHere": {
1266
+ "message": "Drop Lighthouse JSON here"
1267
+ },
1268
+ "lighthouse/LighthousePanel.ts | lighthouseSettings": {
1269
+ "message": "Lighthouse settings"
1270
+ },
1271
+ "lighthouse/LighthousePanel.ts | performAnAudit": {
1272
+ "message": "Perform an audit…"
1273
+ },
1274
+ "lighthouse/LighthousePanel.ts | printing": {
1275
+ "message": "Printing"
1276
+ },
1277
+ "lighthouse/LighthousePanel.ts | thePrintPopupWindowIsOpenPlease": {
1278
+ "message": "The print popup window is open. Please close it to continue."
1279
+ },
1280
+ "lighthouse/LighthouseReportRenderer.ts | thePerformanceMetricsAboveAre": {
1281
+ "message": "The performance metrics above are simulated and won't match the timings found in this trace. Disable simulated throttling in \"Lighthouse Settings\" if you want the timings to match."
1282
+ },
1283
+ "lighthouse/LighthouseReportRenderer.ts | viewOriginalTrace": {
1284
+ "message": "View Original Trace"
1285
+ },
1286
+ "lighthouse/LighthouseReportRenderer.ts | viewTrace": {
1287
+ "message": "View Trace"
1288
+ },
1289
+ "lighthouse/LighthouseReportSelector.ts | newReport": {
1290
+ "message": "(new report)"
1291
+ },
1292
+ "lighthouse/LighthouseReportSelector.ts | reports": {
1293
+ "message": "Reports"
1294
+ },
1295
+ "lighthouse/LighthouseStartView.ts | categories": {
1296
+ "message": "Categories"
1297
+ },
1298
+ "lighthouse/LighthouseStartView.ts | communityPluginsBeta": {
1299
+ "message": "Community Plugins (beta)"
1300
+ },
1301
+ "lighthouse/LighthouseStartView.ts | device": {
1302
+ "message": "Device"
1303
+ },
1304
+ "lighthouse/LighthouseStartView.ts | generateReport": {
1305
+ "message": "Generate report"
1306
+ },
1307
+ "lighthouse/LighthouseStartView.ts | identifyAndFixCommonProblemsThat": {
1308
+ "message": "Identify and fix common problems that affect your site's performance, accessibility, and user experience."
1309
+ },
1310
+ "lighthouse/LighthouseStartView.ts | learnMore": {
1311
+ "message": "Learn more"
1312
+ },
1313
+ "lighthouse/LighthouseStatusView.ts | ahSorryWeRanIntoAnError": {
1314
+ "message": "Ah, sorry! We ran into an error."
1315
+ },
1316
+ "lighthouse/LighthouseStatusView.ts | almostThereLighthouseIsNow": {
1317
+ "message": "Almost there! Lighthouse is now generating your report."
1318
+ },
1319
+ "lighthouse/LighthouseStatusView.ts | asPageLoadTimeIncreasesFromOne": {
1320
+ "message": "As page load time increases from one second to seven seconds, the probability of a mobile site visitor bouncing increases 113%. [Source: Think with Google]"
1321
+ },
1322
+ "lighthouse/LighthouseStatusView.ts | asTheNumberOfElementsOnAPage": {
1323
+ "message": "As the number of elements on a page increases from 400 to 6,000, the probability of conversion drops 95%. [Source: Think with Google]"
1324
+ },
1325
+ "lighthouse/LighthouseStatusView.ts | auditingS": {
1326
+ "message": "Auditing {PH1}"
1327
+ },
1328
+ "lighthouse/LighthouseStatusView.ts | auditingYourWebPage": {
1329
+ "message": "Auditing your web page"
1330
+ },
1331
+ "lighthouse/LighthouseStatusView.ts | byReducingTheResponseSizeOfJson": {
1332
+ "message": "By reducing the response size of JSON needed for displaying comments, Instagram saw increased impressions [Source: WPO Stats]"
1333
+ },
1334
+ "lighthouse/LighthouseStatusView.ts | cancel": {
1335
+ "message": "Cancel"
1336
+ },
1337
+ "lighthouse/LighthouseStatusView.ts | cancelling": {
1338
+ "message": "Cancelling…"
1339
+ },
1340
+ "lighthouse/LighthouseStatusView.ts | fastFactMessageWithPlaceholder": {
1341
+ "message": "💡 {PH1}"
1342
+ },
1343
+ "lighthouse/LighthouseStatusView.ts | ifASiteTakesSecondToBecome": {
1344
+ "message": "If a site takes >1 second to become interactive, users lose attention, and their perception of completing the page task is broken [Source: Google Developers Blog]"
1345
+ },
1346
+ "lighthouse/LighthouseStatusView.ts | ifThisIssueIsReproduciblePlease": {
1347
+ "message": "If this issue is reproducible, please report it at the Lighthouse GitHub repo."
1348
+ },
1349
+ "lighthouse/LighthouseStatusView.ts | lighthouseIsGatheringInformation": {
1350
+ "message": "Lighthouse is gathering information about the page to compute your score."
1351
+ },
1352
+ "lighthouse/LighthouseStatusView.ts | lighthouseIsLoadingThePage": {
1353
+ "message": "Lighthouse is loading the page."
1354
+ },
1355
+ "lighthouse/LighthouseStatusView.ts | lighthouseIsLoadingYourPage": {
1356
+ "message": "Lighthouse is loading your page"
1357
+ },
1358
+ "lighthouse/LighthouseStatusView.ts | lighthouseIsLoadingYourPageWith": {
1359
+ "message": "Lighthouse is loading your page with throttling to measure performance on a mobile device on 3G."
1360
+ },
1361
+ "lighthouse/LighthouseStatusView.ts | lighthouseIsLoadingYourPageWithMobile": {
1362
+ "message": "Lighthouse is loading your page with mobile emulation."
1363
+ },
1364
+ "lighthouse/LighthouseStatusView.ts | lighthouseIsLoadingYourPageWithThrottling": {
1365
+ "message": "Lighthouse is loading your page with throttling to measure performance on a slow desktop on 3G."
1366
+ },
1367
+ "lighthouse/LighthouseStatusView.ts | lighthouseIsWarmingUp": {
1368
+ "message": "Lighthouse is warming up…"
1369
+ },
1370
+ "lighthouse/LighthouseStatusView.ts | lighthouseOnlySimulatesMobile": {
1371
+ "message": "Lighthouse only simulates mobile performance; to measure performance on a real device, try WebPageTest.org [Source: Lighthouse team]"
1372
+ },
1373
+ "lighthouse/LighthouseStatusView.ts | loading": {
1374
+ "message": "Loading…"
1375
+ },
1376
+ "lighthouse/LighthouseStatusView.ts | mbTakesAMinimumOfSecondsTo": {
1377
+ "message": "1MB takes a minimum of 5 seconds to download on a typical 3G connection [Source: WebPageTest and DevTools 3G definition]."
1378
+ },
1379
+ "lighthouse/LighthouseStatusView.ts | OfGlobalMobileUsersInWereOnGOrG": {
1380
+ "message": "75% of global mobile users in 2016 were on 2G or 3G [Source: GSMA Mobile]"
1381
+ },
1382
+ "lighthouse/LighthouseStatusView.ts | OfMobilePagesTakeNearlySeconds": {
1383
+ "message": "70% of mobile pages take nearly 7 seconds for the visual content above the fold to display on the screen. [Source: Think with Google]"
1384
+ },
1385
+ "lighthouse/LighthouseStatusView.ts | rebuildingPinterestPagesFor": {
1386
+ "message": "Rebuilding Pinterest pages for performance increased conversion rates by 15% [Source: WPO Stats]"
1387
+ },
1388
+ "lighthouse/LighthouseStatusView.ts | SecondsIsTheAverageTimeAMobile": {
1389
+ "message": "19 seconds is the average time a mobile web page takes to load on a 3G connection [Source: Google DoubleClick blog]"
1390
+ },
1391
+ "lighthouse/LighthouseStatusView.ts | theAverageUserDeviceCostsLess": {
1392
+ "message": "The average user device costs less than 200 USD. [Source: International Data Corporation]"
1393
+ },
1394
+ "lighthouse/LighthouseStatusView.ts | tryToNavigateToTheUrlInAFresh": {
1395
+ "message": "Try to navigate to the URL in a fresh Chrome profile without any other tabs or extensions open and try again."
1396
+ },
1397
+ "lighthouse/LighthouseStatusView.ts | walmartSawAIncreaseInRevenueFor": {
1398
+ "message": "Walmart saw a 1% increase in revenue for every 100ms improvement in page load [Source: WPO Stats]"
1399
+ },
1400
+ "media/EventDisplayTable.ts | eventDisplay": {
1401
+ "message": "Event display"
1402
+ },
1403
+ "media/EventDisplayTable.ts | eventName": {
1404
+ "message": "Event name"
1405
+ },
1406
+ "media/EventDisplayTable.ts | timestamp": {
1407
+ "message": "Timestamp"
1408
+ },
1409
+ "media/EventDisplayTable.ts | value": {
1410
+ "message": "Value"
1411
+ },
1412
+ "media/EventTimelineView.ts | bufferingStatus": {
1413
+ "message": "Buffering Status"
1414
+ },
1415
+ "media/EventTimelineView.ts | playbackStatus": {
1416
+ "message": "Playback Status"
1417
+ },
1418
+ "media/media-meta.ts | media": {
1419
+ "message": "Media"
1420
+ },
1421
+ "media/media-meta.ts | showMedia": {
1422
+ "message": "Show Media"
1423
+ },
1424
+ "media/media-meta.ts | video": {
1425
+ "message": "video"
1426
+ },
1427
+ "media/PlayerDetailView.ts | events": {
1428
+ "message": "Events"
1429
+ },
1430
+ "media/PlayerDetailView.ts | messages": {
1431
+ "message": "Messages"
1432
+ },
1433
+ "media/PlayerDetailView.ts | playerEvents": {
1434
+ "message": "Player events"
1435
+ },
1436
+ "media/PlayerDetailView.ts | playerMessages": {
1437
+ "message": "Player messages"
1438
+ },
1439
+ "media/PlayerDetailView.ts | playerProperties": {
1440
+ "message": "Player properties"
1441
+ },
1442
+ "media/PlayerDetailView.ts | playerTimeline": {
1443
+ "message": "Player timeline"
1444
+ },
1445
+ "media/PlayerDetailView.ts | properties": {
1446
+ "message": "Properties"
1447
+ },
1448
+ "media/PlayerDetailView.ts | timeline": {
1449
+ "message": "Timeline"
1450
+ },
1451
+ "media/PlayerListView.ts | hideAllOthers": {
1452
+ "message": "Hide all others"
1453
+ },
1454
+ "media/PlayerListView.ts | hidePlayer": {
1455
+ "message": "Hide player"
1456
+ },
1457
+ "media/PlayerListView.ts | players": {
1458
+ "message": "Players"
1459
+ },
1460
+ "media/PlayerListView.ts | savePlayerInfo": {
1461
+ "message": "Save player info"
1462
+ },
1463
+ "media/PlayerMessagesView.ts | all": {
1464
+ "message": "All"
1465
+ },
1466
+ "media/PlayerMessagesView.ts | custom": {
1467
+ "message": "Custom"
1468
+ },
1469
+ "media/PlayerMessagesView.ts | debug": {
1470
+ "message": "Debug"
1471
+ },
1472
+ "media/PlayerMessagesView.ts | default": {
1473
+ "message": "Default"
1474
+ },
1475
+ "media/PlayerMessagesView.ts | error": {
1476
+ "message": "Error"
1477
+ },
1478
+ "media/PlayerMessagesView.ts | filterLogMessages": {
1479
+ "message": "Filter log messages"
1480
+ },
1481
+ "media/PlayerMessagesView.ts | info": {
1482
+ "message": "Info"
1483
+ },
1484
+ "media/PlayerMessagesView.ts | logLevel": {
1485
+ "message": "Log level:"
1486
+ },
1487
+ "media/PlayerMessagesView.ts | warning": {
1488
+ "message": "Warning"
1489
+ },
1490
+ "media/PlayerPropertiesView.ts | audio": {
1491
+ "message": "Audio"
1492
+ },
1493
+ "media/PlayerPropertiesView.ts | bitrate": {
1494
+ "message": "Bitrate"
1495
+ },
1496
+ "media/PlayerPropertiesView.ts | decoder": {
1497
+ "message": "Decoder"
1498
+ },
1499
+ "media/PlayerPropertiesView.ts | decoderName": {
1500
+ "message": "Decoder name"
1501
+ },
1502
+ "media/PlayerPropertiesView.ts | decryptingDemuxer": {
1503
+ "message": "Decrypting demuxer"
1504
+ },
1505
+ "media/PlayerPropertiesView.ts | duration": {
1506
+ "message": "Duration"
1507
+ },
1508
+ "media/PlayerPropertiesView.ts | encoderName": {
1509
+ "message": "Encoder name"
1510
+ },
1511
+ "media/PlayerPropertiesView.ts | fileSize": {
1512
+ "message": "File size"
1513
+ },
1514
+ "media/PlayerPropertiesView.ts | frameRate": {
1515
+ "message": "Frame rate"
1516
+ },
1517
+ "media/PlayerPropertiesView.ts | hardwareDecoder": {
1518
+ "message": "Hardware decoder"
1519
+ },
1520
+ "media/PlayerPropertiesView.ts | hardwareEncoder": {
1521
+ "message": "Hardware encoder"
1522
+ },
1523
+ "media/PlayerPropertiesView.ts | noDecoder": {
1524
+ "message": "No decoder"
1525
+ },
1526
+ "media/PlayerPropertiesView.ts | noEncoder": {
1527
+ "message": "No encoder"
1528
+ },
1529
+ "media/PlayerPropertiesView.ts | noTextTracks": {
1530
+ "message": "No text tracks"
1531
+ },
1532
+ "media/PlayerPropertiesView.ts | playbackFrameTitle": {
1533
+ "message": "Playback frame title"
1534
+ },
1535
+ "media/PlayerPropertiesView.ts | playbackFrameUrl": {
1536
+ "message": "Playback frame URL"
1537
+ },
1538
+ "media/PlayerPropertiesView.ts | properties": {
1539
+ "message": "Properties"
1540
+ },
1541
+ "media/PlayerPropertiesView.ts | rangeHeaderSupport": {
1542
+ "message": "Range header support"
1543
+ },
1544
+ "media/PlayerPropertiesView.ts | resolution": {
1545
+ "message": "Resolution"
1546
+ },
1547
+ "media/PlayerPropertiesView.ts | singleoriginPlayback": {
1548
+ "message": "Single-origin playback"
1549
+ },
1550
+ "media/PlayerPropertiesView.ts | startTime": {
1551
+ "message": "Start time"
1552
+ },
1553
+ "media/PlayerPropertiesView.ts | streaming": {
1554
+ "message": "Streaming"
1555
+ },
1556
+ "media/PlayerPropertiesView.ts | textTrack": {
1557
+ "message": "Text track"
1558
+ },
1559
+ "media/PlayerPropertiesView.ts | track": {
1560
+ "message": "Track"
1561
+ },
1562
+ "media/PlayerPropertiesView.ts | video": {
1563
+ "message": "Video"
1564
+ },
1565
+ "media/PlayerPropertiesView.ts | videoFreezingScore": {
1566
+ "message": "Video freezing score"
1567
+ },
1568
+ "media/PlayerPropertiesView.ts | videoPlaybackRoughness": {
1569
+ "message": "Video playback roughness"
1570
+ },
1571
+ "mobile_throttling/mobile_throttling-meta.ts | showThrottling": {
1572
+ "message": "Show Throttling"
1573
+ },
1574
+ "mobile_throttling/mobile_throttling-meta.ts | throttling": {
1575
+ "message": "Throttling"
1576
+ },
1577
+ "mobile_throttling/MobileThrottlingSelector.ts | advanced": {
1578
+ "message": "Advanced"
1579
+ },
1580
+ "mobile_throttling/MobileThrottlingSelector.ts | disabled": {
1581
+ "message": "Disabled"
1582
+ },
1583
+ "mobile_throttling/MobileThrottlingSelector.ts | presets": {
1584
+ "message": "Presets"
1585
+ },
1586
+ "mobile_throttling/ModuleUIStrings.ts | device": {
1587
+ "message": "device"
1588
+ },
1589
+ "mobile_throttling/ModuleUIStrings.ts | enableFastGThrottling": {
1590
+ "message": "Enable fast 3G throttling"
1591
+ },
1592
+ "mobile_throttling/ModuleUIStrings.ts | enableSlowGThrottling": {
1593
+ "message": "Enable slow 3G throttling"
1594
+ },
1595
+ "mobile_throttling/ModuleUIStrings.ts | goOffline": {
1596
+ "message": "Go offline"
1597
+ },
1598
+ "mobile_throttling/ModuleUIStrings.ts | goOnline": {
1599
+ "message": "Go online"
1600
+ },
1601
+ "mobile_throttling/ModuleUIStrings.ts | network": {
1602
+ "message": "Network"
1603
+ },
1604
+ "mobile_throttling/ModuleUIStrings.ts | throttling": {
1605
+ "message": "throttling"
1606
+ },
1607
+ "mobile_throttling/NetworkPanelIndicator.ts | networkThrottlingIsEnabled": {
1608
+ "message": "Network throttling is enabled"
1609
+ },
1610
+ "mobile_throttling/NetworkPanelIndicator.ts | requestsMayBeBlocked": {
1611
+ "message": "Requests may be blocked"
1612
+ },
1613
+ "mobile_throttling/NetworkPanelIndicator.ts | requestsMayBeRewrittenByLocal": {
1614
+ "message": "Requests may be rewritten by local overrides"
1615
+ },
1616
+ "mobile_throttling/NetworkThrottlingSelector.ts | custom": {
1617
+ "message": "Custom"
1618
+ },
1619
+ "mobile_throttling/NetworkThrottlingSelector.ts | disabled": {
1620
+ "message": "Disabled"
1621
+ },
1622
+ "mobile_throttling/NetworkThrottlingSelector.ts | presets": {
1623
+ "message": "Presets"
1624
+ },
1625
+ "mobile_throttling/ThrottlingManager.ts | add": {
1626
+ "message": "Add…"
1627
+ },
1628
+ "mobile_throttling/ThrottlingManager.ts | addS": {
1629
+ "message": "Add {PH1}"
1630
+ },
1631
+ "mobile_throttling/ThrottlingManager.ts | cpuThrottling": {
1632
+ "message": "CPU throttling"
1633
+ },
1634
+ "mobile_throttling/ThrottlingManager.ts | cpuThrottlingIsEnabled": {
1635
+ "message": "CPU throttling is enabled"
1636
+ },
1637
+ "mobile_throttling/ThrottlingManager.ts | dSlowdown": {
1638
+ "message": "{PH1}× slowdown"
1639
+ },
1640
+ "mobile_throttling/ThrottlingManager.ts | forceDisconnectedFromNetwork": {
1641
+ "message": "Force disconnected from network"
1642
+ },
1643
+ "mobile_throttling/ThrottlingManager.ts | noThrottling": {
1644
+ "message": "No throttling"
1645
+ },
1646
+ "mobile_throttling/ThrottlingManager.ts | offline": {
1647
+ "message": "Offline"
1648
+ },
1649
+ "mobile_throttling/ThrottlingManager.ts | sS": {
1650
+ "message": "{PH1}: {PH2}"
1651
+ },
1652
+ "mobile_throttling/ThrottlingManager.ts | throttling": {
1653
+ "message": "Throttling"
1654
+ },
1655
+ "mobile_throttling/ThrottlingPresets.ts | checkNetworkAndPerformancePanels": {
1656
+ "message": "Check Network and Performance panels"
1657
+ },
1658
+ "mobile_throttling/ThrottlingPresets.ts | custom": {
1659
+ "message": "Custom"
1660
+ },
1661
+ "mobile_throttling/ThrottlingPresets.ts | fastGXCpuSlowdown": {
1662
+ "message": "Fast 3G & 4x CPU slowdown"
1663
+ },
1664
+ "mobile_throttling/ThrottlingPresets.ts | lowendMobile": {
1665
+ "message": "Low-end mobile"
1666
+ },
1667
+ "mobile_throttling/ThrottlingPresets.ts | midtierMobile": {
1668
+ "message": "Mid-tier mobile"
1669
+ },
1670
+ "mobile_throttling/ThrottlingPresets.ts | noInternetConnectivity": {
1671
+ "message": "No internet connectivity"
1672
+ },
1673
+ "mobile_throttling/ThrottlingPresets.ts | noThrottling": {
1674
+ "message": "No throttling"
1675
+ },
1676
+ "mobile_throttling/ThrottlingPresets.ts | slowGXCpuSlowdown": {
1677
+ "message": "Slow 3G & 6x CPU slowdown"
1678
+ },
1679
+ "mobile_throttling/ThrottlingSettingsTab.ts | addCustomProfile": {
1680
+ "message": "Add custom profile..."
1681
+ },
1682
+ "mobile_throttling/ThrottlingSettingsTab.ts | dms": {
1683
+ "message": "{PH1}ms"
1684
+ },
1685
+ "mobile_throttling/ThrottlingSettingsTab.ts | download": {
1686
+ "message": "Download"
1687
+ },
1688
+ "mobile_throttling/ThrottlingSettingsTab.ts | dskbs": {
1689
+ "message": "{PH1}{PH2}kB/s"
1690
+ },
1691
+ "mobile_throttling/ThrottlingSettingsTab.ts | fsmbs": {
1692
+ "message": "{PH1}{PH2}MB/s"
1693
+ },
1694
+ "mobile_throttling/ThrottlingSettingsTab.ts | kbs": {
1695
+ "message": "kb/s"
1696
+ },
1697
+ "mobile_throttling/ThrottlingSettingsTab.ts | latency": {
1698
+ "message": "Latency"
1699
+ },
1700
+ "mobile_throttling/ThrottlingSettingsTab.ts | latencyMustBeAnIntegerBetweenSms": {
1701
+ "message": "Latency must be an integer between {PH1}ms to {PH2}ms inclusive"
1702
+ },
1703
+ "mobile_throttling/ThrottlingSettingsTab.ts | ms": {
1704
+ "message": "ms"
1705
+ },
1706
+ "mobile_throttling/ThrottlingSettingsTab.ts | networkThrottlingProfiles": {
1707
+ "message": "Network Throttling Profiles"
1708
+ },
1709
+ "mobile_throttling/ThrottlingSettingsTab.ts | optional": {
1710
+ "message": "optional"
1711
+ },
1712
+ "mobile_throttling/ThrottlingSettingsTab.ts | profileName": {
1713
+ "message": "Profile Name"
1714
+ },
1715
+ "mobile_throttling/ThrottlingSettingsTab.ts | profileNameCharactersLengthMust": {
1716
+ "message": "Profile Name characters length must be between 1 to {PH1} inclusive"
1717
+ },
1718
+ "mobile_throttling/ThrottlingSettingsTab.ts | sMustBeANumberBetweenSkbsToSkbs": {
1719
+ "message": "{PH1} must be a number between {PH2}kb/s to {PH3}kb/s inclusive"
1720
+ },
1721
+ "mobile_throttling/ThrottlingSettingsTab.ts | upload": {
1722
+ "message": "Upload"
1723
+ },
1724
+ "node_debugger/node_debugger-meta.ts | node": {
1725
+ "message": "Node"
1726
+ },
1727
+ "node_debugger/node_debugger-meta.ts | showNode": {
1728
+ "message": "Node"
1729
+ },
1730
+ "node_main/node_main-meta.ts | connection": {
1731
+ "message": "Connection"
1732
+ },
1733
+ "node_main/node_main-meta.ts | node": {
1734
+ "message": "node"
1735
+ },
1736
+ "node_main/node_main-meta.ts | showConnection": {
1737
+ "message": "Show Connection"
1738
+ },
1739
+ "node_main/NodeConnectionsPanel.js | addConnection": {
1740
+ "message": "Add connection"
1741
+ },
1742
+ "node_main/NodeConnectionsPanel.js | networkAddressEgLocalhost": {
1743
+ "message": "Network address (e.g. localhost:9229)"
1744
+ },
1745
+ "node_main/NodeConnectionsPanel.js | noConnectionsSpecified": {
1746
+ "message": "No connections specified"
1747
+ },
1748
+ "node_main/NodeConnectionsPanel.js | nodejsDebuggingGuide": {
1749
+ "message": "Node.js debugging guide"
1750
+ },
1751
+ "node_main/NodeConnectionsPanel.js | specifyNetworkEndpointAnd": {
1752
+ "message": "Specify network endpoint and DevTools will connect to it automatically. Read {PH1} to learn more."
1753
+ },
1754
+ "node_main/NodeMain.js | main": {
1755
+ "message": "Main"
1756
+ },
1757
+ "node_main/NodeMain.js | nodejsS": {
1758
+ "message": "Node.js: {PH1}"
1759
+ },
1760
+ "object_ui/CustomPreviewComponent.js | showAsJavascriptObject": {
1761
+ "message": "Show as JavaScript object"
1762
+ },
1763
+ "object_ui/JavaScriptAutocomplete.js | keys": {
1764
+ "message": "Keys"
1765
+ },
1766
+ "object_ui/JavaScriptAutocomplete.js | keywords": {
1767
+ "message": "keywords"
1768
+ },
1769
+ "object_ui/JavaScriptAutocomplete.js | lexicalScopeVariables": {
1770
+ "message": "Lexical scope variables"
1771
+ },
1772
+ "object_ui/ObjectPropertiesSection.js | collapseChildren": {
1773
+ "message": "Collapse children"
1774
+ },
1775
+ "object_ui/ObjectPropertiesSection.js | copy": {
1776
+ "message": "Copy"
1777
+ },
1778
+ "object_ui/ObjectPropertiesSection.js | copyPropertyPath": {
1779
+ "message": "Copy property path"
1780
+ },
1781
+ "object_ui/ObjectPropertiesSection.js | copyValue": {
1782
+ "message": "Copy value"
1783
+ },
1784
+ "object_ui/ObjectPropertiesSection.js | dots": {
1785
+ "message": "(...)"
1786
+ },
1787
+ "object_ui/ObjectPropertiesSection.js | exceptionS": {
1788
+ "message": "[Exception: {PH1}]"
1789
+ },
1790
+ "object_ui/ObjectPropertiesSection.js | expandRecursively": {
1791
+ "message": "Expand recursively"
1792
+ },
1793
+ "object_ui/ObjectPropertiesSection.js | invokePropertyGetter": {
1794
+ "message": "Invoke property getter"
1795
+ },
1796
+ "object_ui/ObjectPropertiesSection.js | longTextWasTruncatedS": {
1797
+ "message": "long text was truncated ({PH1})"
1798
+ },
1799
+ "object_ui/ObjectPropertiesSection.js | noProperties": {
1800
+ "message": "No properties"
1801
+ },
1802
+ "object_ui/ObjectPropertiesSection.js | noPropertyGetter": {
1803
+ "message": "No property getter"
1804
+ },
1805
+ "object_ui/ObjectPropertiesSection.js | showAllD": {
1806
+ "message": "Show all {PH1}"
1807
+ },
1808
+ "object_ui/ObjectPropertiesSection.js | showMoreS": {
1809
+ "message": "Show more ({PH1})"
1810
+ },
1811
+ "object_ui/ObjectPropertiesSection.js | stringIsTooLargeToEdit": {
1812
+ "message": "<string is too large to edit>"
1813
+ },
1814
+ "object_ui/ObjectPropertiesSection.js | unknown": {
1815
+ "message": "unknown"
1816
+ },
1817
+ "object_ui/ObjectPropertiesSection.js | unreadable": {
1818
+ "message": "<unreadable>"
1819
+ },
1820
+ "object_ui/RemoteObjectPreviewFormatter.js | empty": {
1821
+ "message": "empty"
1822
+ },
1823
+ "object_ui/RemoteObjectPreviewFormatter.js | emptyD": {
1824
+ "message": "empty × {PH1}"
1825
+ },
1826
+ "object_ui/RemoteObjectPreviewFormatter.js | thePropertyIsComputedWithAGetter": {
1827
+ "message": "The property is computed with a getter"
1828
+ },
1829
+ "perf_ui/FilmStripView.js | doubleclickToZoomImageClickTo": {
1830
+ "message": "Doubleclick to zoom image. Click to view preceding requests."
1831
+ },
1832
+ "perf_ui/FilmStripView.js | nextFrame": {
1833
+ "message": "Next frame"
1834
+ },
1835
+ "perf_ui/FilmStripView.js | previousFrame": {
1836
+ "message": "Previous frame"
1837
+ },
1838
+ "perf_ui/FilmStripView.js | screenshot": {
1839
+ "message": "Screenshot"
1840
+ },
1841
+ "perf_ui/FilmStripView.js | screenshotForSSelectToView": {
1842
+ "message": "Screenshot for {PH1} - select to view preceding requests."
1843
+ },
1844
+ "perf_ui/FlameChart.js | flameChart": {
1845
+ "message": "Flame Chart"
1846
+ },
1847
+ "perf_ui/FlameChart.js | sCollapsed": {
1848
+ "message": "{PH1} collapsed"
1849
+ },
1850
+ "perf_ui/FlameChart.js | sExpanded": {
1851
+ "message": "{PH1} expanded"
1852
+ },
1853
+ "perf_ui/FlameChart.js | sHovered": {
1854
+ "message": "{PH1} hovered"
1855
+ },
1856
+ "perf_ui/FlameChart.js | sSelected": {
1857
+ "message": "{PH1} selected"
1858
+ },
1859
+ "perf_ui/LineLevelProfile.js | kb": {
1860
+ "message": "kB"
1861
+ },
1862
+ "perf_ui/LineLevelProfile.js | mb": {
1863
+ "message": "MB"
1864
+ },
1865
+ "perf_ui/LineLevelProfile.js | ms": {
1866
+ "message": "ms"
1867
+ },
1868
+ "perf_ui/ModuleUIStrings.js | collectGarbage": {
1869
+ "message": "Collect garbage"
1870
+ },
1871
+ "perf_ui/ModuleUIStrings.js | flamechartMouseWheelAction": {
1872
+ "message": "Flamechart mouse wheel action:"
1873
+ },
1874
+ "perf_ui/ModuleUIStrings.js | hideLiveMemoryAllocation": {
1875
+ "message": "Hide live memory allocation annotations"
1876
+ },
1877
+ "perf_ui/ModuleUIStrings.js | liveMemoryAllocationAnnotations": {
1878
+ "message": "Live memory allocation annotations"
1879
+ },
1880
+ "perf_ui/ModuleUIStrings.js | memory": {
1881
+ "message": "Memory"
1882
+ },
1883
+ "perf_ui/ModuleUIStrings.js | performance": {
1884
+ "message": "Performance"
1885
+ },
1886
+ "perf_ui/ModuleUIStrings.js | scroll": {
1887
+ "message": "Scroll"
1888
+ },
1889
+ "perf_ui/ModuleUIStrings.js | showLiveMemoryAllocation": {
1890
+ "message": "Show live memory allocation annotations"
1891
+ },
1892
+ "perf_ui/ModuleUIStrings.js | zoom": {
1893
+ "message": "Zoom"
1894
+ },
1895
+ "perf_ui/NetworkPriorities.js | high": {
1896
+ "message": "High"
1897
+ },
1898
+ "perf_ui/NetworkPriorities.js | highest": {
1899
+ "message": "Highest"
1900
+ },
1901
+ "perf_ui/NetworkPriorities.js | low": {
1902
+ "message": "Low"
1903
+ },
1904
+ "perf_ui/NetworkPriorities.js | lowest": {
1905
+ "message": "Lowest"
1906
+ },
1907
+ "perf_ui/NetworkPriorities.js | medium": {
1908
+ "message": "Medium"
1909
+ },
1910
+ "perf_ui/OverviewGrid.js | leftResizer": {
1911
+ "message": "Left Resizer"
1912
+ },
1913
+ "perf_ui/OverviewGrid.js | overviewGridWindow": {
1914
+ "message": "Overview grid window"
1915
+ },
1916
+ "perf_ui/OverviewGrid.js | rightResizer": {
1917
+ "message": "Right Resizer"
1918
+ },
1919
+ "perf_ui/PieChart.ts | total": {
1920
+ "message": "Total"
1921
+ },
1922
+ "performance_monitor/performance_monitor-meta.ts | activity": {
1923
+ "message": "activity"
1924
+ },
1925
+ "performance_monitor/performance_monitor-meta.ts | metrics": {
1926
+ "message": "metrics"
1927
+ },
1928
+ "performance_monitor/performance_monitor-meta.ts | monitor": {
1929
+ "message": "monitor"
1930
+ },
1931
+ "performance_monitor/performance_monitor-meta.ts | performance": {
1932
+ "message": "performance"
1933
+ },
1934
+ "performance_monitor/performance_monitor-meta.ts | performanceMonitor": {
1935
+ "message": "Performance monitor"
1936
+ },
1937
+ "performance_monitor/performance_monitor-meta.ts | showPerformanceMonitor": {
1938
+ "message": "Show Performance monitor"
1939
+ },
1940
+ "performance_monitor/performance_monitor-meta.ts | systemMonitor": {
1941
+ "message": "system monitor"
1942
+ },
1943
+ "performance_monitor/PerformanceMonitor.ts | cpuUsage": {
1944
+ "message": "CPU usage"
1945
+ },
1946
+ "performance_monitor/PerformanceMonitor.ts | documentFrames": {
1947
+ "message": "Document Frames"
1948
+ },
1949
+ "performance_monitor/PerformanceMonitor.ts | documents": {
1950
+ "message": "Documents"
1951
+ },
1952
+ "performance_monitor/PerformanceMonitor.ts | domNodes": {
1953
+ "message": "DOM Nodes"
1954
+ },
1955
+ "performance_monitor/PerformanceMonitor.ts | graphsDisplayingARealtimeViewOf": {
1956
+ "message": "Graphs displaying a real-time view of performance metrics"
1957
+ },
1958
+ "performance_monitor/PerformanceMonitor.ts | jsEventListeners": {
1959
+ "message": "JS event listeners"
1960
+ },
1961
+ "performance_monitor/PerformanceMonitor.ts | jsHeapSize": {
1962
+ "message": "JS heap size"
1963
+ },
1964
+ "performance_monitor/PerformanceMonitor.ts | layoutsSec": {
1965
+ "message": "Layouts / sec"
1966
+ },
1967
+ "performance_monitor/PerformanceMonitor.ts | paused": {
1968
+ "message": "Paused"
1969
+ },
1970
+ "performance_monitor/PerformanceMonitor.ts | styleRecalcsSec": {
1971
+ "message": "Style recalcs / sec"
1972
+ },
1973
+ "persistence/Automapping.js | theAttemptToBindSInTheWorkspace": {
1974
+ "message": "The attempt to bind \"{PH1}\" in the workspace failed as this URI is malformed."
1975
+ },
1976
+ "persistence/EditFileSystemView.js | add": {
1977
+ "message": "Add"
1978
+ },
1979
+ "persistence/EditFileSystemView.js | enterAPath": {
1980
+ "message": "Enter a path"
1981
+ },
1982
+ "persistence/EditFileSystemView.js | enterAUniquePath": {
1983
+ "message": "Enter a unique path"
1984
+ },
1985
+ "persistence/EditFileSystemView.js | excludedFolders": {
1986
+ "message": "Excluded folders"
1987
+ },
1988
+ "persistence/EditFileSystemView.js | folderPath": {
1989
+ "message": "Folder path"
1990
+ },
1991
+ "persistence/EditFileSystemView.js | none": {
1992
+ "message": "None"
1993
+ },
1994
+ "persistence/EditFileSystemView.js | sViaDevtools": {
1995
+ "message": "{PH1} (via .devtools)"
1996
+ },
1997
+ "persistence/IsolatedFileSystem.js | blobCouldNotBeLoaded": {
1998
+ "message": "Blob could not be loaded."
1999
+ },
2000
+ "persistence/IsolatedFileSystem.js | cantReadFileSS": {
2001
+ "message": "Can't read file: {PH1}: {PH2}"
2002
+ },
2003
+ "persistence/IsolatedFileSystem.js | fileSystemErrorS": {
2004
+ "message": "File system error: {PH1}"
2005
+ },
2006
+ "persistence/IsolatedFileSystem.js | linkedToS": {
2007
+ "message": "Linked to {PH1}"
2008
+ },
2009
+ "persistence/IsolatedFileSystem.js | unknownErrorReadingFileS": {
2010
+ "message": "Unknown error reading file: {PH1}"
2011
+ },
2012
+ "persistence/IsolatedFileSystemManager.js | unableToAddFilesystemS": {
2013
+ "message": "Unable to add filesystem: {PH1}"
2014
+ },
2015
+ "persistence/ModuleUIStrings.js | disableOverrideNetworkRequests": {
2016
+ "message": "Disable override network requests"
2017
+ },
2018
+ "persistence/ModuleUIStrings.js | enableLocalOverrides": {
2019
+ "message": "Enable Local Overrides"
2020
+ },
2021
+ "persistence/ModuleUIStrings.js | enableOverrideNetworkRequests": {
2022
+ "message": "Enable override network requests"
2023
+ },
2024
+ "persistence/ModuleUIStrings.js | interception": {
2025
+ "message": "interception"
2026
+ },
2027
+ "persistence/ModuleUIStrings.js | network": {
2028
+ "message": "network"
2029
+ },
2030
+ "persistence/ModuleUIStrings.js | override": {
2031
+ "message": "override"
2032
+ },
2033
+ "persistence/ModuleUIStrings.js | persistence": {
2034
+ "message": "Persistence"
2035
+ },
2036
+ "persistence/ModuleUIStrings.js | request": {
2037
+ "message": "request"
2038
+ },
2039
+ "persistence/ModuleUIStrings.js | rewrite": {
2040
+ "message": "rewrite"
2041
+ },
2042
+ "persistence/persistence-meta.ts | showWorkspace": {
2043
+ "message": "Show Workspace"
2044
+ },
2045
+ "persistence/persistence-meta.ts | workspace": {
2046
+ "message": "Workspace"
2047
+ },
2048
+ "persistence/PersistenceActions.js | openInContainingFolder": {
2049
+ "message": "Open in containing folder"
2050
+ },
2051
+ "persistence/PersistenceActions.js | saveAs": {
2052
+ "message": "Save as..."
2053
+ },
2054
+ "persistence/PersistenceActions.js | saveForOverrides": {
2055
+ "message": "Save for overrides"
2056
+ },
2057
+ "persistence/PersistenceActions.js | saveImage": {
2058
+ "message": "Save image"
2059
+ },
2060
+ "persistence/PersistenceUtils.js | linkedToS": {
2061
+ "message": "Linked to {PH1}"
2062
+ },
2063
+ "persistence/PersistenceUtils.js | linkedToSourceMapS": {
2064
+ "message": "Linked to source map: {PH1}"
2065
+ },
2066
+ "persistence/PlatformFileSystem.js | unableToReadFilesWithThis": {
2067
+ "message": "Unable to read files with this implementation."
2068
+ },
2069
+ "persistence/WorkspaceSettingsTab.js | addFolder": {
2070
+ "message": "Add folder…"
2071
+ },
2072
+ "persistence/WorkspaceSettingsTab.js | folderExcludePattern": {
2073
+ "message": "Folder exclude pattern"
2074
+ },
2075
+ "persistence/WorkspaceSettingsTab.js | mappingsAreInferredAutomatically": {
2076
+ "message": "Mappings are inferred automatically."
2077
+ },
2078
+ "persistence/WorkspaceSettingsTab.js | remove": {
2079
+ "message": "Remove"
2080
+ },
2081
+ "persistence/WorkspaceSettingsTab.js | workspace": {
2082
+ "message": "Workspace"
2083
+ },
2084
+ "profiler/CPUProfileView.js | aggregatedSelfTime": {
2085
+ "message": "Aggregated self time"
2086
+ },
2087
+ "profiler/CPUProfileView.js | aggregatedTotalTime": {
2088
+ "message": "Aggregated total time"
2089
+ },
2090
+ "profiler/CPUProfileView.js | cpuProfiles": {
2091
+ "message": "CPU PROFILES"
2092
+ },
2093
+ "profiler/CPUProfileView.js | cpuProfilesShow": {
2094
+ "message": "CPU profiles show where the execution time is spent in your page's JavaScript functions."
2095
+ },
2096
+ "profiler/CPUProfileView.js | fms": {
2097
+ "message": "{PH1} ms"
2098
+ },
2099
+ "profiler/CPUProfileView.js | formatPercent": {
2100
+ "message": "{PH1} %"
2101
+ },
2102
+ "profiler/CPUProfileView.js | name": {
2103
+ "message": "Name"
2104
+ },
2105
+ "profiler/CPUProfileView.js | notOptimized": {
2106
+ "message": "Not optimized"
2107
+ },
2108
+ "profiler/CPUProfileView.js | recording": {
2109
+ "message": "Recording…"
2110
+ },
2111
+ "profiler/CPUProfileView.js | recordJavascriptCpuProfile": {
2112
+ "message": "Record JavaScript CPU Profile"
2113
+ },
2114
+ "profiler/CPUProfileView.js | selfTime": {
2115
+ "message": "Self Time"
2116
+ },
2117
+ "profiler/CPUProfileView.js | startCpuProfiling": {
2118
+ "message": "Start CPU profiling"
2119
+ },
2120
+ "profiler/CPUProfileView.js | stopCpuProfiling": {
2121
+ "message": "Stop CPU profiling"
2122
+ },
2123
+ "profiler/CPUProfileView.js | totalTime": {
2124
+ "message": "Total Time"
2125
+ },
2126
+ "profiler/CPUProfileView.js | url": {
2127
+ "message": "URL"
2128
+ },
2129
+ "profiler/HeapProfilerPanel.js | revealInSummaryView": {
2130
+ "message": "Reveal in Summary view"
2131
+ },
2132
+ "profiler/HeapProfileView.js | allocationSampling": {
2133
+ "message": "Allocation sampling"
2134
+ },
2135
+ "profiler/HeapProfileView.js | formatPercent": {
2136
+ "message": "{PH1} %"
2137
+ },
2138
+ "profiler/HeapProfileView.js | heapProfilerIsRecording": {
2139
+ "message": "Heap profiler is recording"
2140
+ },
2141
+ "profiler/HeapProfileView.js | name": {
2142
+ "message": "Name"
2143
+ },
2144
+ "profiler/HeapProfileView.js | profileD": {
2145
+ "message": "Profile {PH1}"
2146
+ },
2147
+ "profiler/HeapProfileView.js | recording": {
2148
+ "message": "Recording…"
2149
+ },
2150
+ "profiler/HeapProfileView.js | recordMemoryAllocationsUsing": {
2151
+ "message": "Record memory allocations using sampling method.\n This profile type has minimal performance overhead and can be used for long running operations.\n It provides good approximation of allocations broken down by JavaScript execution stack."
2152
+ },
2153
+ "profiler/HeapProfileView.js | samplingProfiles": {
2154
+ "message": "SAMPLING PROFILES"
2155
+ },
2156
+ "profiler/HeapProfileView.js | sBytes": {
2157
+ "message": "{PH1} bytes"
2158
+ },
2159
+ "profiler/HeapProfileView.js | selectedSizeS": {
2160
+ "message": "Selected size: {PH1}"
2161
+ },
2162
+ "profiler/HeapProfileView.js | selfSize": {
2163
+ "message": "Self size"
2164
+ },
2165
+ "profiler/HeapProfileView.js | selfSizeBytes": {
2166
+ "message": "Self Size (bytes)"
2167
+ },
2168
+ "profiler/HeapProfileView.js | skb": {
2169
+ "message": "{PH1} kB"
2170
+ },
2171
+ "profiler/HeapProfileView.js | startHeapProfiling": {
2172
+ "message": "Start heap profiling"
2173
+ },
2174
+ "profiler/HeapProfileView.js | stopHeapProfiling": {
2175
+ "message": "Stop heap profiling"
2176
+ },
2177
+ "profiler/HeapProfileView.js | stopping": {
2178
+ "message": "Stopping…"
2179
+ },
2180
+ "profiler/HeapProfileView.js | totalSize": {
2181
+ "message": "Total size"
2182
+ },
2183
+ "profiler/HeapProfileView.js | totalSizeBytes": {
2184
+ "message": "Total Size (bytes)"
2185
+ },
2186
+ "profiler/HeapProfileView.js | url": {
2187
+ "message": "URL"
2188
+ },
2189
+ "profiler/HeapSnapshotDataGrids.js | allocation": {
2190
+ "message": "Allocation"
2191
+ },
2192
+ "profiler/HeapSnapshotDataGrids.js | allocSize": {
2193
+ "message": "Alloc. Size"
2194
+ },
2195
+ "profiler/HeapSnapshotDataGrids.js | constructorString": {
2196
+ "message": "Constructor"
2197
+ },
2198
+ "profiler/HeapSnapshotDataGrids.js | count": {
2199
+ "message": "Count"
2200
+ },
2201
+ "profiler/HeapSnapshotDataGrids.js | Deleted": {
2202
+ "message": "# Deleted"
2203
+ },
2204
+ "profiler/HeapSnapshotDataGrids.js | Delta": {
2205
+ "message": "# Delta"
2206
+ },
2207
+ "profiler/HeapSnapshotDataGrids.js | distance": {
2208
+ "message": "Distance"
2209
+ },
2210
+ "profiler/HeapSnapshotDataGrids.js | distanceFromWindowObject": {
2211
+ "message": "Distance from window object"
2212
+ },
2213
+ "profiler/HeapSnapshotDataGrids.js | freedSize": {
2214
+ "message": "Freed Size"
2215
+ },
2216
+ "profiler/HeapSnapshotDataGrids.js | function": {
2217
+ "message": "Function"
2218
+ },
2219
+ "profiler/HeapSnapshotDataGrids.js | heapSnapshotConstructors": {
2220
+ "message": "Heap Snapshot Constructors"
2221
+ },
2222
+ "profiler/HeapSnapshotDataGrids.js | heapSnapshotDiff": {
2223
+ "message": "Heap Snapshot Diff"
2224
+ },
2225
+ "profiler/HeapSnapshotDataGrids.js | heapSnapshotRetainment": {
2226
+ "message": "Heap Snapshot Retainment"
2227
+ },
2228
+ "profiler/HeapSnapshotDataGrids.js | liveCount": {
2229
+ "message": "Live Count"
2230
+ },
2231
+ "profiler/HeapSnapshotDataGrids.js | liveSize": {
2232
+ "message": "Live Size"
2233
+ },
2234
+ "profiler/HeapSnapshotDataGrids.js | New": {
2235
+ "message": "# New"
2236
+ },
2237
+ "profiler/HeapSnapshotDataGrids.js | object": {
2238
+ "message": "Object"
2239
+ },
2240
+ "profiler/HeapSnapshotDataGrids.js | retainedSize": {
2241
+ "message": "Retained Size"
2242
+ },
2243
+ "profiler/HeapSnapshotDataGrids.js | shallowSize": {
2244
+ "message": "Shallow Size"
2245
+ },
2246
+ "profiler/HeapSnapshotDataGrids.js | size": {
2247
+ "message": "Size"
2248
+ },
2249
+ "profiler/HeapSnapshotDataGrids.js | sizeDelta": {
2250
+ "message": "Size Delta"
2251
+ },
2252
+ "profiler/HeapSnapshotDataGrids.js | sizeOfTheObjectItselfInBytes": {
2253
+ "message": "Size of the object itself in bytes"
2254
+ },
2255
+ "profiler/HeapSnapshotDataGrids.js | sizeOfTheObjectPlusTheGraphIt": {
2256
+ "message": "Size of the object plus the graph it retains in bytes"
2257
+ },
2258
+ "profiler/HeapSnapshotGridNodes.js | detachedFromDomTree": {
2259
+ "message": "Detached from DOM tree"
2260
+ },
2261
+ "profiler/HeapSnapshotGridNodes.js | emptyPlaceholder": {
2262
+ "message": "{PH1}"
2263
+ },
2264
+ "profiler/HeapSnapshotGridNodes.js | genericStringsTwoPlaceholders": {
2265
+ "message": "{PH1}, {PH2}"
2266
+ },
2267
+ "profiler/HeapSnapshotGridNodes.js | inElement": {
2268
+ "message": "in"
2269
+ },
2270
+ "profiler/HeapSnapshotGridNodes.js | internalArray": {
2271
+ "message": "(internal array)[]"
2272
+ },
2273
+ "profiler/HeapSnapshotGridNodes.js | previewIsNotAvailable": {
2274
+ "message": "Preview is not available"
2275
+ },
2276
+ "profiler/HeapSnapshotGridNodes.js | revealInSummaryView": {
2277
+ "message": "Reveal in Summary view"
2278
+ },
2279
+ "profiler/HeapSnapshotGridNodes.js | revealObjectSWithIdSInSummary": {
2280
+ "message": "Reveal object '{PH1}' with id @{PH2} in Summary view"
2281
+ },
2282
+ "profiler/HeapSnapshotGridNodes.js | storeAsGlobalVariable": {
2283
+ "message": "Store as global variable"
2284
+ },
2285
+ "profiler/HeapSnapshotGridNodes.js | summary": {
2286
+ "message": "Summary"
2287
+ },
2288
+ "profiler/HeapSnapshotGridNodes.js | userObjectReachableFromWindow": {
2289
+ "message": "User object reachable from window"
2290
+ },
2291
+ "profiler/HeapSnapshotProxy.js | anErrorOccurredWhenACallToMethod": {
2292
+ "message": "An error occurred when a call to method '{PH1}' was requested"
2293
+ },
2294
+ "profiler/HeapSnapshotView.js | allObjects": {
2295
+ "message": "All objects"
2296
+ },
2297
+ "profiler/HeapSnapshotView.js | allocation": {
2298
+ "message": "Allocation"
2299
+ },
2300
+ "profiler/HeapSnapshotView.js | allocationInstrumentationOn": {
2301
+ "message": "Allocation instrumentation on timeline"
2302
+ },
2303
+ "profiler/HeapSnapshotView.js | allocationStack": {
2304
+ "message": "Allocation stack"
2305
+ },
2306
+ "profiler/HeapSnapshotView.js | allocationTimelines": {
2307
+ "message": "ALLOCATION TIMELINES"
2308
+ },
2309
+ "profiler/HeapSnapshotView.js | AllocationTimelinesShow": {
2310
+ "message": "\n Allocation timelines show instrumented JavaScript memory allocations over time.\n Once profile is recorded you can select a time interval to see objects that\n were allocated within it and still alive by the end of recording.\n Use this profile type to isolate memory leaks."
2311
+ },
2312
+ "profiler/HeapSnapshotView.js | baseSnapshot": {
2313
+ "message": "Base snapshot"
2314
+ },
2315
+ "profiler/HeapSnapshotView.js | classFilter": {
2316
+ "message": "Class filter"
2317
+ },
2318
+ "profiler/HeapSnapshotView.js | code": {
2319
+ "message": "Code"
2320
+ },
2321
+ "profiler/HeapSnapshotView.js | comparison": {
2322
+ "message": "Comparison"
2323
+ },
2324
+ "profiler/HeapSnapshotView.js | containment": {
2325
+ "message": "Containment"
2326
+ },
2327
+ "profiler/HeapSnapshotView.js | filter": {
2328
+ "message": "Filter"
2329
+ },
2330
+ "profiler/HeapSnapshotView.js | find": {
2331
+ "message": "Find"
2332
+ },
2333
+ "profiler/HeapSnapshotView.js | heapMemoryUsage": {
2334
+ "message": "Heap memory usage"
2335
+ },
2336
+ "profiler/HeapSnapshotView.js | heapSnapshot": {
2337
+ "message": "Heap snapshot"
2338
+ },
2339
+ "profiler/HeapSnapshotView.js | heapSnapshotProfilesShowMemory": {
2340
+ "message": "Heap snapshot profiles show memory distribution among your page's JavaScript objects and related DOM nodes."
2341
+ },
2342
+ "profiler/HeapSnapshotView.js | heapSnapshots": {
2343
+ "message": "HEAP SNAPSHOTS"
2344
+ },
2345
+ "profiler/HeapSnapshotView.js | jsArrays": {
2346
+ "message": "JS arrays"
2347
+ },
2348
+ "profiler/HeapSnapshotView.js | liveObjects": {
2349
+ "message": "Live objects"
2350
+ },
2351
+ "profiler/HeapSnapshotView.js | loading": {
2352
+ "message": "Loading…"
2353
+ },
2354
+ "profiler/HeapSnapshotView.js | objectsAllocatedBeforeS": {
2355
+ "message": "Objects allocated before {PH1}"
2356
+ },
2357
+ "profiler/HeapSnapshotView.js | objectsAllocatedBetweenSAndS": {
2358
+ "message": "Objects allocated between {PH1} and {PH2}"
2359
+ },
2360
+ "profiler/HeapSnapshotView.js | percentagePlaceholder": {
2361
+ "message": "{PH1}%"
2362
+ },
2363
+ "profiler/HeapSnapshotView.js | perspective": {
2364
+ "message": "Perspective"
2365
+ },
2366
+ "profiler/HeapSnapshotView.js | recordAllocationStacksExtra": {
2367
+ "message": "Record allocation stacks (extra performance overhead)"
2368
+ },
2369
+ "profiler/HeapSnapshotView.js | recording": {
2370
+ "message": "Recording…"
2371
+ },
2372
+ "profiler/HeapSnapshotView.js | retainers": {
2373
+ "message": "Retainers"
2374
+ },
2375
+ "profiler/HeapSnapshotView.js | savingD": {
2376
+ "message": "Saving… {PH1}%"
2377
+ },
2378
+ "profiler/HeapSnapshotView.js | selectedSizeS": {
2379
+ "message": "Selected size: {PH1}"
2380
+ },
2381
+ "profiler/HeapSnapshotView.js | sKb": {
2382
+ "message": "{PH1} kB"
2383
+ },
2384
+ "profiler/HeapSnapshotView.js | snapshotD": {
2385
+ "message": "Snapshot {PH1}"
2386
+ },
2387
+ "profiler/HeapSnapshotView.js | snapshotting": {
2388
+ "message": "Snapshotting…"
2389
+ },
2390
+ "profiler/HeapSnapshotView.js | stackWasNotRecordedForThisObject": {
2391
+ "message": "Stack was not recorded for this object because it had been allocated before this profile recording started."
2392
+ },
2393
+ "profiler/HeapSnapshotView.js | startRecordingHeapProfile": {
2394
+ "message": "Start recording heap profile"
2395
+ },
2396
+ "profiler/HeapSnapshotView.js | statistics": {
2397
+ "message": "Statistics"
2398
+ },
2399
+ "profiler/HeapSnapshotView.js | stopRecordingHeapProfile": {
2400
+ "message": "Stop recording heap profile"
2401
+ },
2402
+ "profiler/HeapSnapshotView.js | strings": {
2403
+ "message": "Strings"
2404
+ },
2405
+ "profiler/HeapSnapshotView.js | summary": {
2406
+ "message": "Summary"
2407
+ },
2408
+ "profiler/HeapSnapshotView.js | systemObjects": {
2409
+ "message": "System objects"
2410
+ },
2411
+ "profiler/HeapSnapshotView.js | takeHeapSnapshot": {
2412
+ "message": "Take heap snapshot"
2413
+ },
2414
+ "profiler/HeapSnapshotView.js | treatGlobalObjectsAsRoots": {
2415
+ "message": "Treat global objects as roots (recommended, unchecking this exposes internal nodes and introduces excessive detail, but might help debugging cycles in retaining paths)"
2416
+ },
2417
+ "profiler/HeapSnapshotView.js | typedArrays": {
2418
+ "message": "Typed arrays"
2419
+ },
2420
+ "profiler/IsolateSelector.js | changeRate": {
2421
+ "message": "{PH1}/s"
2422
+ },
2423
+ "profiler/IsolateSelector.js | decreasingBySPerSecond": {
2424
+ "message": "decreasing by {PH1} per second"
2425
+ },
2426
+ "profiler/IsolateSelector.js | empty": {
2427
+ "message": "(empty)"
2428
+ },
2429
+ "profiler/IsolateSelector.js | heapSizeChangeTrendOverTheLastS": {
2430
+ "message": "Heap size change trend over the last {PH1} minutes."
2431
+ },
2432
+ "profiler/IsolateSelector.js | heapSizeInUseByLiveJsObjects": {
2433
+ "message": "Heap size in use by live JS objects."
2434
+ },
2435
+ "profiler/IsolateSelector.js | increasingBySPerSecond": {
2436
+ "message": "increasing by {PH1} per second"
2437
+ },
2438
+ "profiler/IsolateSelector.js | javascriptVmInstances": {
2439
+ "message": "JavaScript VM instances"
2440
+ },
2441
+ "profiler/IsolateSelector.js | totalJsHeapSize": {
2442
+ "message": "Total JS heap size"
2443
+ },
2444
+ "profiler/IsolateSelector.js | totalPageJsHeapSizeAcrossAllVm": {
2445
+ "message": "Total page JS heap size across all VM instances."
2446
+ },
2447
+ "profiler/IsolateSelector.js | totalPageJsHeapSizeChangeTrend": {
2448
+ "message": "Total page JS heap size change trend over the last {PH1} minutes."
2449
+ },
2450
+ "profiler/LiveHeapProfileView.js | allocatedJsHeapSizeCurrentlyIn": {
2451
+ "message": "Allocated JS heap size currently in use"
2452
+ },
2453
+ "profiler/LiveHeapProfileView.js | anonymousScriptS": {
2454
+ "message": "(Anonymous Script {PH1})"
2455
+ },
2456
+ "profiler/LiveHeapProfileView.js | heapProfile": {
2457
+ "message": "Heap Profile"
2458
+ },
2459
+ "profiler/LiveHeapProfileView.js | jsHeap": {
2460
+ "message": "JS Heap"
2461
+ },
2462
+ "profiler/LiveHeapProfileView.js | kb": {
2463
+ "message": "kB"
2464
+ },
2465
+ "profiler/LiveHeapProfileView.js | numberOfVmsSharingTheSameScript": {
2466
+ "message": "Number of VMs sharing the same script source"
2467
+ },
2468
+ "profiler/LiveHeapProfileView.js | scriptUrl": {
2469
+ "message": "Script URL"
2470
+ },
2471
+ "profiler/LiveHeapProfileView.js | urlOfTheScriptSource": {
2472
+ "message": "URL of the script source"
2473
+ },
2474
+ "profiler/LiveHeapProfileView.js | vms": {
2475
+ "message": "VMs"
2476
+ },
2477
+ "profiler/ModuleUIStrings.js | buildingAllocationStatistics": {
2478
+ "message": "Building allocation statistics…"
2479
+ },
2480
+ "profiler/ModuleUIStrings.js | buildingDominatedNodes": {
2481
+ "message": "Building dominated nodes…"
2482
+ },
2483
+ "profiler/ModuleUIStrings.js | buildingDominatorTree": {
2484
+ "message": "Building dominator tree…"
2485
+ },
2486
+ "profiler/ModuleUIStrings.js | buildingEdgeIndexes": {
2487
+ "message": "Building edge indexes…"
2488
+ },
2489
+ "profiler/ModuleUIStrings.js | buildingLocations": {
2490
+ "message": "Building locations…"
2491
+ },
2492
+ "profiler/ModuleUIStrings.js | buildingPostorderIndex": {
2493
+ "message": "Building postorder index…"
2494
+ },
2495
+ "profiler/ModuleUIStrings.js | buildingRetainers": {
2496
+ "message": "Building retainers…"
2497
+ },
2498
+ "profiler/ModuleUIStrings.js | calculatingDistances": {
2499
+ "message": "Calculating distances…"
2500
+ },
2501
+ "profiler/ModuleUIStrings.js | calculatingNodeFlags": {
2502
+ "message": "Calculating node flags…"
2503
+ },
2504
+ "profiler/ModuleUIStrings.js | calculatingRetainedSizes": {
2505
+ "message": "Calculating retained sizes…"
2506
+ },
2507
+ "profiler/ModuleUIStrings.js | calculatingSamples": {
2508
+ "message": "Calculating samples…"
2509
+ },
2510
+ "profiler/ModuleUIStrings.js | calculatingStatistics": {
2511
+ "message": "Calculating statistics…"
2512
+ },
2513
+ "profiler/ModuleUIStrings.js | done": {
2514
+ "message": "Done"
2515
+ },
2516
+ "profiler/ModuleUIStrings.js | finishedProcessing": {
2517
+ "message": "Finished processing."
2518
+ },
2519
+ "profiler/ModuleUIStrings.js | loadingAllocationTracesD": {
2520
+ "message": "Loading allocation traces… {PH1}%"
2521
+ },
2522
+ "profiler/ModuleUIStrings.js | loadingEdgesD": {
2523
+ "message": "Loading edges… {PH1}%"
2524
+ },
2525
+ "profiler/ModuleUIStrings.js | loadingLocations": {
2526
+ "message": "Loading locations…"
2527
+ },
2528
+ "profiler/ModuleUIStrings.js | loadingNodesD": {
2529
+ "message": "Loading nodes… {PH1}%"
2530
+ },
2531
+ "profiler/ModuleUIStrings.js | loadingSamples": {
2532
+ "message": "Loading samples…"
2533
+ },
2534
+ "profiler/ModuleUIStrings.js | loadingSnapshotInfo": {
2535
+ "message": "Loading snapshot info…"
2536
+ },
2537
+ "profiler/ModuleUIStrings.js | loadingStrings": {
2538
+ "message": "Loading strings…"
2539
+ },
2540
+ "profiler/ModuleUIStrings.js | parsingStrings": {
2541
+ "message": "Parsing strings…"
2542
+ },
2543
+ "profiler/ModuleUIStrings.js | processingSnapshot": {
2544
+ "message": "Processing snapshot…"
2545
+ },
2546
+ "profiler/ModuleUIStrings.js | propagatingDomState": {
2547
+ "message": "Propagating DOM state…"
2548
+ },
2549
+ "profiler/ProfileDataGrid.js | genericTextTwoPlaceholders": {
2550
+ "message": "{PH1}, {PH2}"
2551
+ },
2552
+ "profiler/ProfileDataGrid.js | notOptimizedS": {
2553
+ "message": "Not optimized: {PH1}"
2554
+ },
2555
+ "profiler/ProfileLauncherView.js | load": {
2556
+ "message": "Load"
2557
+ },
2558
+ "profiler/ProfileLauncherView.js | selectJavascriptVmInstance": {
2559
+ "message": "Select JavaScript VM instance"
2560
+ },
2561
+ "profiler/ProfileLauncherView.js | selectProfilingType": {
2562
+ "message": "Select profiling type"
2563
+ },
2564
+ "profiler/ProfileLauncherView.js | start": {
2565
+ "message": "Start"
2566
+ },
2567
+ "profiler/ProfileLauncherView.js | stop": {
2568
+ "message": "Stop"
2569
+ },
2570
+ "profiler/ProfileLauncherView.js | takeSnapshot": {
2571
+ "message": "Take snapshot"
2572
+ },
2573
+ "profiler/profiler-meta.ts | liveHeapProfile": {
2574
+ "message": "Live Heap Profile"
2575
+ },
2576
+ "profiler/profiler-meta.ts | memory": {
2577
+ "message": "Memory"
2578
+ },
2579
+ "profiler/profiler-meta.ts | showLiveHeapProfile": {
2580
+ "message": "Show Live Heap Profile"
2581
+ },
2582
+ "profiler/profiler-meta.ts | showMemory": {
2583
+ "message": "Show Memory"
2584
+ },
2585
+ "profiler/profiler-meta.ts | showNativeFunctions": {
2586
+ "message": "Show native functions in JS Profile"
2587
+ },
2588
+ "profiler/profiler-meta.ts | startRecordingHeapAllocations": {
2589
+ "message": "Start recording heap allocations"
2590
+ },
2591
+ "profiler/profiler-meta.ts | startRecordingHeapAllocationsAndReload": {
2592
+ "message": "Start recording heap allocations and reload the page"
2593
+ },
2594
+ "profiler/profiler-meta.ts | startStopRecording": {
2595
+ "message": "Start/stop recording"
2596
+ },
2597
+ "profiler/profiler-meta.ts | stopRecordingHeapAllocations": {
2598
+ "message": "Stop recording heap allocations"
2599
+ },
2600
+ "profiler/ProfileSidebarTreeElement.js | delete": {
2601
+ "message": "Delete"
2602
+ },
2603
+ "profiler/ProfileSidebarTreeElement.js | load": {
2604
+ "message": "Load…"
2605
+ },
2606
+ "profiler/ProfileSidebarTreeElement.js | save": {
2607
+ "message": "Save"
2608
+ },
2609
+ "profiler/ProfileSidebarTreeElement.js | saveWithEllipsis": {
2610
+ "message": "Save…"
2611
+ },
2612
+ "profiler/ProfileSidebarTreeElement.js | singlePlaceholder": {
2613
+ "message": "{PH1}"
2614
+ },
2615
+ "profiler/ProfilesPanel.js | cantLoadFileSupportedFile": {
2616
+ "message": "Can’t load file. Supported file extensions: '{PH1}.'"
2617
+ },
2618
+ "profiler/ProfilesPanel.js | cantLoadProfileWhileAnother": {
2619
+ "message": "Can’t load profile while another profile is being recorded."
2620
+ },
2621
+ "profiler/ProfilesPanel.js | clearAllProfiles": {
2622
+ "message": "Clear all profiles"
2623
+ },
2624
+ "profiler/ProfilesPanel.js | load": {
2625
+ "message": "Load…"
2626
+ },
2627
+ "profiler/ProfilesPanel.js | profileLoadingFailedS": {
2628
+ "message": "Profile loading failed: {PH1}."
2629
+ },
2630
+ "profiler/ProfilesPanel.js | profiles": {
2631
+ "message": "Profiles"
2632
+ },
2633
+ "profiler/ProfilesPanel.js | runD": {
2634
+ "message": "Run {PH1}"
2635
+ },
2636
+ "profiler/ProfileView.js | chart": {
2637
+ "message": "Chart"
2638
+ },
2639
+ "profiler/ProfileView.js | excludeSelectedFunction": {
2640
+ "message": "Exclude selected function"
2641
+ },
2642
+ "profiler/ProfileView.js | failedToReadFile": {
2643
+ "message": "Failed to read file"
2644
+ },
2645
+ "profiler/ProfileView.js | fileSReadErrorS": {
2646
+ "message": "File '{PH1}' read error: {PH2}"
2647
+ },
2648
+ "profiler/ProfileView.js | findByCostMsNameOrFile": {
2649
+ "message": "Find by cost (>50ms), name or file"
2650
+ },
2651
+ "profiler/ProfileView.js | focusSelectedFunction": {
2652
+ "message": "Focus selected function"
2653
+ },
2654
+ "profiler/ProfileView.js | function": {
2655
+ "message": "Function"
2656
+ },
2657
+ "profiler/ProfileView.js | heavyBottomUp": {
2658
+ "message": "Heavy (Bottom Up)"
2659
+ },
2660
+ "profiler/ProfileView.js | loaded": {
2661
+ "message": "Loaded"
2662
+ },
2663
+ "profiler/ProfileView.js | loading": {
2664
+ "message": "Loading…"
2665
+ },
2666
+ "profiler/ProfileView.js | loadingD": {
2667
+ "message": "Loading… {PH1}%"
2668
+ },
2669
+ "profiler/ProfileView.js | parsing": {
2670
+ "message": "Parsing…"
2671
+ },
2672
+ "profiler/ProfileView.js | profile": {
2673
+ "message": "Profile"
2674
+ },
2675
+ "profiler/ProfileView.js | profileD": {
2676
+ "message": "Profile {PH1}"
2677
+ },
2678
+ "profiler/ProfileView.js | profiler": {
2679
+ "message": "Profiler"
2680
+ },
2681
+ "profiler/ProfileView.js | profileViewMode": {
2682
+ "message": "Profile view mode"
2683
+ },
2684
+ "profiler/ProfileView.js | restoreAllFunctions": {
2685
+ "message": "Restore all functions"
2686
+ },
2687
+ "profiler/ProfileView.js | treeTopDown": {
2688
+ "message": "Tree (Top Down)"
2689
+ },
2690
+ "protocol_monitor/protocol_monitor-meta.ts | protocolMonitor": {
2691
+ "message": "Protocol monitor"
2692
+ },
2693
+ "protocol_monitor/protocol_monitor-meta.ts | showProtocolMonitor": {
2694
+ "message": "Show Protocol monitor"
2695
+ },
2696
+ "protocol_monitor/ProtocolMonitor.ts | clearAll": {
2697
+ "message": "Clear all"
2698
+ },
2699
+ "protocol_monitor/ProtocolMonitor.ts | direction": {
2700
+ "message": "Direction"
2701
+ },
2702
+ "protocol_monitor/ProtocolMonitor.ts | documentation": {
2703
+ "message": "Documentation"
2704
+ },
2705
+ "protocol_monitor/ProtocolMonitor.ts | filter": {
2706
+ "message": "Filter"
2707
+ },
2708
+ "protocol_monitor/ProtocolMonitor.ts | method": {
2709
+ "message": "Method"
2710
+ },
2711
+ "protocol_monitor/ProtocolMonitor.ts | noMessageSelected": {
2712
+ "message": "No message selected"
2713
+ },
2714
+ "protocol_monitor/ProtocolMonitor.ts | record": {
2715
+ "message": "Record"
2716
+ },
2717
+ "protocol_monitor/ProtocolMonitor.ts | request": {
2718
+ "message": "Request"
2719
+ },
2720
+ "protocol_monitor/ProtocolMonitor.ts | response": {
2721
+ "message": "Response"
2722
+ },
2723
+ "protocol_monitor/ProtocolMonitor.ts | sMs": {
2724
+ "message": "{PH1} ms"
2725
+ },
2726
+ "protocol_monitor/ProtocolMonitor.ts | target": {
2727
+ "message": "Target"
2728
+ },
2729
+ "protocol_monitor/ProtocolMonitor.ts | timestamp": {
2730
+ "message": "Timestamp"
2731
+ },
2732
+ "recorder/RecordingFileSystem.ts | defaultRecordingName": {
2733
+ "message": "Recording #{nextId}"
2734
+ },
2735
+ "recorder/RecordingFileSystem.ts | linkedToS": {
2736
+ "message": "Linked to {PH1}"
2737
+ },
2738
+ "resources/ClearStorageView.js | storageQuotaUsed": {
2739
+ "message": "{PH1} used out of {PH2} storage quota"
2740
+ },
2741
+ "resources/ClearStorageView.js | storageQuotaUsedWithBytes": {
2742
+ "message": "{PH1} bytes used out of {PH2} bytes storage quota"
2743
+ },
2744
+ "resources/ClearStorageView.js | storageWithCustomMarker": {
2745
+ "message": "{PH1} (custom)"
2746
+ },
2747
+ "screencast/ScreencastApp.ts | toggleScreencast": {
2748
+ "message": "Toggle screencast"
2749
+ },
2750
+ "screencast/ScreencastView.ts | addressBar": {
2751
+ "message": "Address bar"
2752
+ },
2753
+ "screencast/ScreencastView.ts | back": {
2754
+ "message": "back"
2755
+ },
2756
+ "screencast/ScreencastView.ts | forward": {
2757
+ "message": "forward"
2758
+ },
2759
+ "screencast/ScreencastView.ts | profilingInProgress": {
2760
+ "message": "Profiling in progress"
2761
+ },
2762
+ "screencast/ScreencastView.ts | reload": {
2763
+ "message": "reload"
2764
+ },
2765
+ "screencast/ScreencastView.ts | screencastViewOfDebugTarget": {
2766
+ "message": "Screencast view of debug target"
2767
+ },
2768
+ "screencast/ScreencastView.ts | theTabIsInactive": {
2769
+ "message": "The tab is inactive"
2770
+ },
2771
+ "search/SearchResultsPane.js | lineS": {
2772
+ "message": "Line {PH1}"
2773
+ },
2774
+ "search/SearchResultsPane.js | matchesCountS": {
2775
+ "message": "Matches Count {PH1}"
2776
+ },
2777
+ "search/SearchResultsPane.js | showDMore": {
2778
+ "message": "Show {PH1} more"
2779
+ },
2780
+ "search/SearchView.js | clear": {
2781
+ "message": "Clear"
2782
+ },
2783
+ "search/SearchView.js | foundDMatchingLinesInDFiles": {
2784
+ "message": "Found {PH1} matching lines in {PH2} files."
2785
+ },
2786
+ "search/SearchView.js | foundDMatchingLinesInFile": {
2787
+ "message": "Found {PH1} matching lines in 1 file."
2788
+ },
2789
+ "search/SearchView.js | foundMatchingLineInFile": {
2790
+ "message": "Found 1 matching line in 1 file."
2791
+ },
2792
+ "search/SearchView.js | indexing": {
2793
+ "message": "Indexing…"
2794
+ },
2795
+ "search/SearchView.js | indexingInterrupted": {
2796
+ "message": "Indexing interrupted."
2797
+ },
2798
+ "search/SearchView.js | matchCase": {
2799
+ "message": "Match Case"
2800
+ },
2801
+ "search/SearchView.js | noMatchesFound": {
2802
+ "message": "No matches found."
2803
+ },
2804
+ "search/SearchView.js | refresh": {
2805
+ "message": "Refresh"
2806
+ },
2807
+ "search/SearchView.js | search": {
2808
+ "message": "Search"
2809
+ },
2810
+ "search/SearchView.js | searchFinished": {
2811
+ "message": "Search finished."
2812
+ },
2813
+ "search/SearchView.js | searching": {
2814
+ "message": "Searching…"
2815
+ },
2816
+ "search/SearchView.js | searchInterrupted": {
2817
+ "message": "Search interrupted."
2818
+ },
2819
+ "search/SearchView.js | searchQuery": {
2820
+ "message": "Search Query"
2821
+ },
2822
+ "search/SearchView.js | useRegularExpression": {
2823
+ "message": "Use Regular Expression"
2824
+ },
2825
+ "security/SecurityModel.ts | cipherWithMAC": {
2826
+ "message": "{PH1} with {PH2}"
2827
+ },
2828
+ "security/SecurityModel.ts | keyExchangeWithGroup": {
2829
+ "message": "{PH1} with {PH2}"
2830
+ },
2831
+ "security/SecurityModel.ts | theSecurityOfThisPageIsUnknown": {
2832
+ "message": "The security of this page is unknown."
2833
+ },
2834
+ "security/SecurityModel.ts | thisPageIsNotSecure": {
2835
+ "message": "This page is not secure."
2836
+ },
2837
+ "security/SecurityModel.ts | thisPageIsNotSecureBrokenHttps": {
2838
+ "message": "This page is not secure (broken HTTPS)."
2839
+ },
2840
+ "security/SecurityModel.ts | thisPageIsSecureValidHttps": {
2841
+ "message": "This page is secure (valid HTTPS)."
2842
+ },
2843
+ "security/SecurityPanel.ts | activeContentWithCertificate": {
2844
+ "message": "active content with certificate errors"
2845
+ },
2846
+ "security/SecurityPanel.ts | activeMixedContent": {
2847
+ "message": "active mixed content"
2848
+ },
2849
+ "security/SecurityPanel.ts | allResourcesOnThisPageAreServed": {
2850
+ "message": "All resources on this page are served securely."
2851
+ },
2852
+ "security/SecurityPanel.ts | allServedSecurely": {
2853
+ "message": "all served securely"
2854
+ },
2855
+ "security/SecurityPanel.ts | blockedMixedContent": {
2856
+ "message": "Blocked mixed content"
2857
+ },
2858
+ "security/SecurityPanel.ts | certificate": {
2859
+ "message": "Certificate"
2860
+ },
2861
+ "security/SecurityPanel.ts | certificateExpiresSoon": {
2862
+ "message": "Certificate expires soon"
2863
+ },
2864
+ "security/SecurityPanel.ts | certificateTransparency": {
2865
+ "message": "Certificate Transparency"
2866
+ },
2867
+ "security/SecurityPanel.ts | chromeHasDeterminedThatThisSite": {
2868
+ "message": "Chrome has determined that this site could be fake or fraudulent.\n\nIf you believe this is shown in error please visit https://bugs.chromium.org/p/chromium/issues/entry?template=Safety+Tips+Appeals."
2869
+ },
2870
+ "security/SecurityPanel.ts | cipher": {
2871
+ "message": "Cipher"
2872
+ },
2873
+ "security/SecurityPanel.ts | connection": {
2874
+ "message": "Connection"
2875
+ },
2876
+ "security/SecurityPanel.ts | contentWithCertificateErrors": {
2877
+ "message": "content with certificate errors"
2878
+ },
2879
+ "security/SecurityPanel.ts | dataWasEnteredInAFieldOnA": {
2880
+ "message": "Data was entered in a field on a non-secure page. A warning has been added to the URL bar."
2881
+ },
2882
+ "security/SecurityPanel.ts | flaggedByGoogleSafeBrowsing": {
2883
+ "message": "Flagged by Google Safe Browsing"
2884
+ },
2885
+ "security/SecurityPanel.ts | formFieldEditedOnANonsecurePage": {
2886
+ "message": "Form field edited on a non-secure page"
2887
+ },
2888
+ "security/SecurityPanel.ts | hashAlgorithm": {
2889
+ "message": "Hash algorithm"
2890
+ },
2891
+ "security/SecurityPanel.ts | hideFullDetails": {
2892
+ "message": "Hide full details"
2893
+ },
2894
+ "security/SecurityPanel.ts | info": {
2895
+ "message": "Info"
2896
+ },
2897
+ "security/SecurityPanel.ts | insecureSha": {
2898
+ "message": "insecure (SHA-1)"
2899
+ },
2900
+ "security/SecurityPanel.ts | issuedAt": {
2901
+ "message": "Issued at"
2902
+ },
2903
+ "security/SecurityPanel.ts | issuer": {
2904
+ "message": "Issuer"
2905
+ },
2906
+ "security/SecurityPanel.ts | keyExchange": {
2907
+ "message": "Key exchange"
2908
+ },
2909
+ "security/SecurityPanel.ts | keyExchangeGroup": {
2910
+ "message": "Key exchange group"
2911
+ },
2912
+ "security/SecurityPanel.ts | logId": {
2913
+ "message": "Log ID"
2914
+ },
2915
+ "security/SecurityPanel.ts | logName": {
2916
+ "message": "Log name"
2917
+ },
2918
+ "security/SecurityPanel.ts | mainOrigin": {
2919
+ "message": "Main origin"
2920
+ },
2921
+ "security/SecurityPanel.ts | mainOriginNonsecure": {
2922
+ "message": "Main origin (non-secure)"
2923
+ },
2924
+ "security/SecurityPanel.ts | mainOriginSecure": {
2925
+ "message": "Main origin (secure)"
2926
+ },
2927
+ "security/SecurityPanel.ts | missing": {
2928
+ "message": "missing"
2929
+ },
2930
+ "security/SecurityPanel.ts | mixedContent": {
2931
+ "message": "mixed content"
2932
+ },
2933
+ "security/SecurityPanel.ts | na": {
2934
+ "message": "(n/a)"
2935
+ },
2936
+ "security/SecurityPanel.ts | nonsecureForm": {
2937
+ "message": "non-secure form"
2938
+ },
2939
+ "security/SecurityPanel.ts | nonsecureOrigins": {
2940
+ "message": "Non-secure origins"
2941
+ },
2942
+ "security/SecurityPanel.ts | noSecurityDetailsAreAvailableFor": {
2943
+ "message": "No security details are available for this origin."
2944
+ },
2945
+ "security/SecurityPanel.ts | noSecurityInformation": {
2946
+ "message": "No security information"
2947
+ },
2948
+ "security/SecurityPanel.ts | notSecure": {
2949
+ "message": "Not secure"
2950
+ },
2951
+ "security/SecurityPanel.ts | notSecureBroken": {
2952
+ "message": "Not secure (broken)"
2953
+ },
2954
+ "security/SecurityPanel.ts | obsoleteConnectionSettings": {
2955
+ "message": "obsolete connection settings"
2956
+ },
2957
+ "security/SecurityPanel.ts | openFullCertificateDetails": {
2958
+ "message": "Open full certificate details"
2959
+ },
2960
+ "security/SecurityPanel.ts | origin": {
2961
+ "message": "Origin"
2962
+ },
2963
+ "security/SecurityPanel.ts | overview": {
2964
+ "message": "Overview"
2965
+ },
2966
+ "security/SecurityPanel.ts | possibleSpoofingUrl": {
2967
+ "message": "Possible spoofing URL"
2968
+ },
2969
+ "security/SecurityPanel.ts | protocol": {
2970
+ "message": "Protocol"
2971
+ },
2972
+ "security/SecurityPanel.ts | publickeypinningBypassed": {
2973
+ "message": "Public-Key-Pinning bypassed"
2974
+ },
2975
+ "security/SecurityPanel.ts | publickeypinningWasBypassedByA": {
2976
+ "message": "Public-Key-Pinning was bypassed by a local root certificate."
2977
+ },
2978
+ "security/SecurityPanel.ts | reloadThePageToRecordRequestsFor": {
2979
+ "message": "Reload the page to record requests for HTTP resources."
2980
+ },
2981
+ "security/SecurityPanel.ts | reloadToViewDetails": {
2982
+ "message": "Reload to view details"
2983
+ },
2984
+ "security/SecurityPanel.ts | resources": {
2985
+ "message": "Resources"
2986
+ },
2987
+ "security/SecurityPanel.ts | rsaKeyExchangeIsObsoleteEnableAn": {
2988
+ "message": "RSA key exchange is obsolete. Enable an ECDHE-based cipher suite."
2989
+ },
2990
+ "security/SecurityPanel.ts | san": {
2991
+ "message": "SAN"
2992
+ },
2993
+ "security/SecurityPanel.ts | sct": {
2994
+ "message": "SCT"
2995
+ },
2996
+ "security/SecurityPanel.ts | secure": {
2997
+ "message": "Secure"
2998
+ },
2999
+ "security/SecurityPanel.ts | secureConnectionSettings": {
3000
+ "message": "secure connection settings"
3001
+ },
3002
+ "security/SecurityPanel.ts | secureOrigins": {
3003
+ "message": "Secure origins"
3004
+ },
3005
+ "security/SecurityPanel.ts | securityOverview": {
3006
+ "message": "Security overview"
3007
+ },
3008
+ "security/SecurityPanel.ts | showFullDetails": {
3009
+ "message": "Show full details"
3010
+ },
3011
+ "security/SecurityPanel.ts | showLess": {
3012
+ "message": "Show less"
3013
+ },
3014
+ "security/SecurityPanel.ts | showMoreSTotal": {
3015
+ "message": "Show more ({PH1} total)"
3016
+ },
3017
+ "security/SecurityPanel.ts | signatureAlgorithm": {
3018
+ "message": "Signature algorithm"
3019
+ },
3020
+ "security/SecurityPanel.ts | signatureData": {
3021
+ "message": "Signature data"
3022
+ },
3023
+ "security/SecurityPanel.ts | sIsObsoleteEnableAnAesgcmbased": {
3024
+ "message": "{PH1} is obsolete. Enable an AES-GCM-based cipher suite."
3025
+ },
3026
+ "security/SecurityPanel.ts | sIsObsoleteEnableTlsOrLater": {
3027
+ "message": "{PH1} is obsolete. Enable TLS 1.2 or later."
3028
+ },
3029
+ "security/SecurityPanel.ts | source": {
3030
+ "message": "Source"
3031
+ },
3032
+ "security/SecurityPanel.ts | subject": {
3033
+ "message": "Subject"
3034
+ },
3035
+ "security/SecurityPanel.ts | subjectAlternativeNameMissing": {
3036
+ "message": "Subject Alternative Name missing"
3037
+ },
3038
+ "security/SecurityPanel.ts | theCertificateChainForThisSite": {
3039
+ "message": "The certificate chain for this site contains a certificate signed using SHA-1."
3040
+ },
3041
+ "security/SecurityPanel.ts | theCertificateForThisSiteDoesNot": {
3042
+ "message": "The certificate for this site does not contain a Subject Alternative Name extension containing a domain name or IP address."
3043
+ },
3044
+ "security/SecurityPanel.ts | theCertificateForThisSiteExpires": {
3045
+ "message": "The certificate for this site expires in less than 48 hours and needs to be renewed."
3046
+ },
3047
+ "security/SecurityPanel.ts | theConnectionToThisSiteIs": {
3048
+ "message": "The connection to this site is encrypted and authenticated using {PH1}, {PH2}, and {PH3}."
3049
+ },
3050
+ "security/SecurityPanel.ts | theConnectionToThisSiteIsUsingA": {
3051
+ "message": "The connection to this site is using a valid, trusted server certificate issued by {PH1}."
3052
+ },
3053
+ "security/SecurityPanel.ts | theSecurityDetailsAboveAreFrom": {
3054
+ "message": "The security details above are from the first inspected response."
3055
+ },
3056
+ "security/SecurityPanel.ts | theSecurityOfThisPageIsUnknown": {
3057
+ "message": "The security of this page is unknown."
3058
+ },
3059
+ "security/SecurityPanel.ts | theServerSignatureUsesShaWhichIs": {
3060
+ "message": "The server signature uses SHA-1, which is obsolete. Enable a SHA-2 signature algorithm instead. (Note this is different from the signature in the certificate.)"
3061
+ },
3062
+ "security/SecurityPanel.ts | thisIsAnErrorPage": {
3063
+ "message": "This is an error page."
3064
+ },
3065
+ "security/SecurityPanel.ts | thisOriginIsANonhttpsSecure": {
3066
+ "message": "This origin is a non-HTTPS secure origin."
3067
+ },
3068
+ "security/SecurityPanel.ts | thisPageHasANonhttpsSecureOrigin": {
3069
+ "message": "This page has a non-HTTPS secure origin."
3070
+ },
3071
+ "security/SecurityPanel.ts | thisPageIncludesAFormWithA": {
3072
+ "message": "This page includes a form with a non-secure \"action\" attribute."
3073
+ },
3074
+ "security/SecurityPanel.ts | thisPageIncludesHttpResources": {
3075
+ "message": "This page includes HTTP resources."
3076
+ },
3077
+ "security/SecurityPanel.ts | thisPageIncludesResourcesThat": {
3078
+ "message": "This page includes resources that were loaded with certificate errors."
3079
+ },
3080
+ "security/SecurityPanel.ts | thisPageIsDangerousFlaggedBy": {
3081
+ "message": "This page is dangerous (flagged by Google Safe Browsing)."
3082
+ },
3083
+ "security/SecurityPanel.ts | thisPageIsInsecureUnencrypted": {
3084
+ "message": "This page is insecure (unencrypted HTTP)."
3085
+ },
3086
+ "security/SecurityPanel.ts | thisPageIsNotSecure": {
3087
+ "message": "This page is not secure."
3088
+ },
3089
+ "security/SecurityPanel.ts | thisPageIsNotSecureBrokenHttps": {
3090
+ "message": "This page is not secure (broken HTTPS)."
3091
+ },
3092
+ "security/SecurityPanel.ts | thisPageIsSecureValidHttps": {
3093
+ "message": "This page is secure (valid HTTPS)."
3094
+ },
3095
+ "security/SecurityPanel.ts | thisPageIsSuspicious": {
3096
+ "message": "This page is suspicious"
3097
+ },
3098
+ "security/SecurityPanel.ts | thisPageIsSuspiciousFlaggedBy": {
3099
+ "message": "This page is suspicious (flagged by Chrome)."
3100
+ },
3101
+ "security/SecurityPanel.ts | thisRequestCompliesWithChromes": {
3102
+ "message": "This request complies with Chrome's Certificate Transparency policy."
3103
+ },
3104
+ "security/SecurityPanel.ts | thisRequestDoesNotComplyWith": {
3105
+ "message": "This request does not comply with Chrome's Certificate Transparency policy."
3106
+ },
3107
+ "security/SecurityPanel.ts | thisResponseWasLoadedFromCache": {
3108
+ "message": "This response was loaded from cache. Some security details might be missing."
3109
+ },
3110
+ "security/SecurityPanel.ts | thisSiteIsMissingAValidTrusted": {
3111
+ "message": "This site is missing a valid, trusted certificate ({PH1})."
3112
+ },
3113
+ "security/SecurityPanel.ts | thisSitesHostnameLooksSimilarToS": {
3114
+ "message": "This site's hostname looks similar to {PH1}. Attackers sometimes mimic sites by making small, hard-to-see changes to the domain name.\n\nIf you believe this is shown in error please visit https://bugs.chromium.org/p/chromium/issues/entry?template=Safety+Tips+Appeals."
3115
+ },
3116
+ "security/SecurityPanel.ts | toCheckThisPagesStatusVisit": {
3117
+ "message": "To check this page's status, visit g.co/safebrowsingstatus."
3118
+ },
3119
+ "security/SecurityPanel.ts | unknownCanceled": {
3120
+ "message": "Unknown / canceled"
3121
+ },
3122
+ "security/SecurityPanel.ts | validAndTrusted": {
3123
+ "message": "valid and trusted"
3124
+ },
3125
+ "security/SecurityPanel.ts | validationStatus": {
3126
+ "message": "Validation status"
3127
+ },
3128
+ "security/SecurityPanel.ts | validFrom": {
3129
+ "message": "Valid from"
3130
+ },
3131
+ "security/SecurityPanel.ts | validUntil": {
3132
+ "message": "Valid until"
3133
+ },
3134
+ "security/SecurityPanel.ts | viewCertificate": {
3135
+ "message": "View certificate"
3136
+ },
3137
+ "security/SecurityPanel.ts | viewDRequestInNetworkPanel": {
3138
+ "message": "View {PH1} request in Network Panel"
3139
+ },
3140
+ "security/SecurityPanel.ts | viewDRequestsInNetworkPanel": {
3141
+ "message": "View {PH1} requests in Network Panel"
3142
+ },
3143
+ "security/SecurityPanel.ts | viewRequestsInNetworkPanel": {
3144
+ "message": "View requests in Network Panel"
3145
+ },
3146
+ "security/SecurityPanel.ts | youHaveRecentlyAllowedContent": {
3147
+ "message": "You have recently allowed content loaded with certificate errors (such as scripts or iframes) to run on this site."
3148
+ },
3149
+ "security/SecurityPanel.ts | youHaveRecentlyAllowedNonsecure": {
3150
+ "message": "You have recently allowed non-secure content (such as scripts or iframes) to run on this site."
3151
+ },
3152
+ "security/SecurityPanel.ts | yourConnectionToThisOriginIsNot": {
3153
+ "message": "Your connection to this origin is not secure."
3154
+ },
3155
+ "security/SecurityPanel.ts | yourPageRequestedNonsecure": {
3156
+ "message": "Your page requested non-secure resources that were blocked."
3157
+ },
3158
+ "settings/FrameworkIgnoreListSettingsTab.ts | addFilenamePattern": {
3159
+ "message": "Add filename pattern"
3160
+ },
3161
+ "settings/FrameworkIgnoreListSettingsTab.ts | addPattern": {
3162
+ "message": "Add pattern..."
3163
+ },
3164
+ "settings/FrameworkIgnoreListSettingsTab.ts | behavior": {
3165
+ "message": "Behavior"
3166
+ },
3167
+ "settings/FrameworkIgnoreListSettingsTab.ts | debuggerWillSkipThroughThe": {
3168
+ "message": "Debugger will skip through the scripts and will not stop on exceptions thrown by them."
3169
+ },
3170
+ "settings/FrameworkIgnoreListSettingsTab.ts | disabled": {
3171
+ "message": "Disabled"
3172
+ },
3173
+ "settings/FrameworkIgnoreListSettingsTab.ts | frameworkIgnoreList": {
3174
+ "message": "Framework Ignore List"
3175
+ },
3176
+ "settings/FrameworkIgnoreListSettingsTab.ts | ignoreList": {
3177
+ "message": "Ignore List"
3178
+ },
3179
+ "settings/FrameworkIgnoreListSettingsTab.ts | ignoreListContentScripts": {
3180
+ "message": "Add content scripts to ignore list"
3181
+ },
3182
+ "settings/FrameworkIgnoreListSettingsTab.ts | ignoreListContentScriptsExtension": {
3183
+ "message": "Add content scripts to ignore list (extension scripts in the page)"
3184
+ },
3185
+ "settings/FrameworkIgnoreListSettingsTab.ts | ignoreScriptsWhoseNamesMatchS": {
3186
+ "message": "Ignore scripts whose names match '{PH1}'"
3187
+ },
3188
+ "settings/FrameworkIgnoreListSettingsTab.ts | noIgnoreListPatterns": {
3189
+ "message": "No ignore list patterns"
3190
+ },
3191
+ "settings/FrameworkIgnoreListSettingsTab.ts | pattern": {
3192
+ "message": "Pattern"
3193
+ },
3194
+ "settings/FrameworkIgnoreListSettingsTab.ts | patternAlreadyExists": {
3195
+ "message": "Pattern already exists"
3196
+ },
3197
+ "settings/FrameworkIgnoreListSettingsTab.ts | patternCannotBeEmpty": {
3198
+ "message": "Pattern cannot be empty"
3199
+ },
3200
+ "settings/FrameworkIgnoreListSettingsTab.ts | patternMustBeAValidRegular": {
3201
+ "message": "Pattern must be a valid regular expression"
3202
+ },
3203
+ "settings/KeybindsSettingsTab.ts | addAShortcut": {
3204
+ "message": "Add a shortcut"
3205
+ },
3206
+ "settings/KeybindsSettingsTab.ts | confirmChanges": {
3207
+ "message": "Confirm changes"
3208
+ },
3209
+ "settings/KeybindsSettingsTab.ts | discardChanges": {
3210
+ "message": "Discard changes"
3211
+ },
3212
+ "settings/KeybindsSettingsTab.ts | editShortcut": {
3213
+ "message": "Edit shortcut"
3214
+ },
3215
+ "settings/KeybindsSettingsTab.ts | FullListOfDevtoolsKeyboard": {
3216
+ "message": "Full list of DevTools keyboard shortcuts and gestures"
3217
+ },
3218
+ "settings/KeybindsSettingsTab.ts | keyboardShortcutsList": {
3219
+ "message": "Keyboard shortcuts list"
3220
+ },
3221
+ "settings/KeybindsSettingsTab.ts | matchShortcutsFromPreset": {
3222
+ "message": "Match shortcuts from preset"
3223
+ },
3224
+ "settings/KeybindsSettingsTab.ts | noShortcutForAction": {
3225
+ "message": "No shortcut for action"
3226
+ },
3227
+ "settings/KeybindsSettingsTab.ts | removeShortcut": {
3228
+ "message": "Remove shortcut"
3229
+ },
3230
+ "settings/KeybindsSettingsTab.ts | ResetShortcutsForAction": {
3231
+ "message": "Reset shortcuts for action"
3232
+ },
3233
+ "settings/KeybindsSettingsTab.ts | RestoreDefaultShortcuts": {
3234
+ "message": "Restore default shortcuts"
3235
+ },
3236
+ "settings/KeybindsSettingsTab.ts | shortcutModified": {
3237
+ "message": "Shortcut modified"
3238
+ },
3239
+ "settings/KeybindsSettingsTab.ts | shortcuts": {
3240
+ "message": "Shortcuts"
3241
+ },
3242
+ "settings/KeybindsSettingsTab.ts | shortcutsCannotContainOnly": {
3243
+ "message": "Shortcuts cannot contain only modifier keys."
3244
+ },
3245
+ "settings/KeybindsSettingsTab.ts | thisShortcutIsInUseByS": {
3246
+ "message": "This shortcut is in use by {PH1}: {PH2}."
3247
+ },
3248
+ "settings/ModuleUIStrings.ts | documentation": {
3249
+ "message": "Documentation"
3250
+ },
3251
+ "settings/ModuleUIStrings.ts | settings": {
3252
+ "message": "Settings"
3253
+ },
3254
+ "settings/settings-meta.ts | experiments": {
3255
+ "message": "Experiments"
3256
+ },
3257
+ "settings/settings-meta.ts | ignoreList": {
3258
+ "message": "Ignore List"
3259
+ },
3260
+ "settings/settings-meta.ts | preferences": {
3261
+ "message": "Preferences"
3262
+ },
3263
+ "settings/settings-meta.ts | shortcuts": {
3264
+ "message": "Shortcuts"
3265
+ },
3266
+ "settings/settings-meta.ts | showExperiments": {
3267
+ "message": "Show Experiments"
3268
+ },
3269
+ "settings/settings-meta.ts | showIgnoreList": {
3270
+ "message": "Show Ignore List"
3271
+ },
3272
+ "settings/settings-meta.ts | showPreferences": {
3273
+ "message": "Show Preferences"
3274
+ },
3275
+ "settings/settings-meta.ts | showShortcuts": {
3276
+ "message": "Show Shortcuts"
3277
+ },
3278
+ "settings/SettingsScreen.ts | experiments": {
3279
+ "message": "Experiments"
3280
+ },
3281
+ "settings/SettingsScreen.ts | oneOrMoreSettingsHaveChanged": {
3282
+ "message": "One or more settings have changed which requires a reload to take effect."
3283
+ },
3284
+ "settings/SettingsScreen.ts | preferences": {
3285
+ "message": "Preferences"
3286
+ },
3287
+ "settings/SettingsScreen.ts | restoreDefaultsAndReload": {
3288
+ "message": "Restore defaults and reload"
3289
+ },
3290
+ "settings/SettingsScreen.ts | settings": {
3291
+ "message": "Settings"
3292
+ },
3293
+ "settings/SettingsScreen.ts | shortcuts": {
3294
+ "message": "Shortcuts"
3295
+ },
3296
+ "settings/SettingsScreen.ts | theseExperimentsAreParticularly": {
3297
+ "message": "These experiments are particularly unstable. Enable at your own risk."
3298
+ },
3299
+ "settings/SettingsScreen.ts | theseExperimentsCouldBeUnstable": {
3300
+ "message": "These experiments could be unstable or unreliable and may require you to restart DevTools."
3301
+ },
3302
+ "settings/SettingsScreen.ts | warning": {
3303
+ "message": "WARNING:"
3304
+ },
3305
+ "snippets/ModuleUIStrings.ts | runSnippet": {
3306
+ "message": "Run snippet"
3307
+ },
3308
+ "snippets/ScriptSnippetFileSystem.ts | linkedTo": {
3309
+ "message": "Linked to {PH1}"
3310
+ },
3311
+ "snippets/ScriptSnippetFileSystem.ts | scriptSnippet": {
3312
+ "message": "Script snippet #{PH1}"
3313
+ },
3314
+ "snippets/SnippetsQuickOpen.ts | noSnippetsFound": {
3315
+ "message": "No snippets found."
3316
+ },
3317
+ "source_frame/FontView.js | font": {
3318
+ "message": "Font"
3319
+ },
3320
+ "source_frame/FontView.js | previewOfFontFromS": {
3321
+ "message": "Preview of font from {PH1}"
3322
+ },
3323
+ "source_frame/ImageView.js | copyImageAsDataUri": {
3324
+ "message": "Copy image as data URI"
3325
+ },
3326
+ "source_frame/ImageView.js | copyImageUrl": {
3327
+ "message": "Copy image URL"
3328
+ },
3329
+ "source_frame/ImageView.js | dD": {
3330
+ "message": "{PH1} × {PH2}"
3331
+ },
3332
+ "source_frame/ImageView.js | download": {
3333
+ "message": "download"
3334
+ },
3335
+ "source_frame/ImageView.js | dropImageFileHere": {
3336
+ "message": "Drop image file here"
3337
+ },
3338
+ "source_frame/ImageView.js | image": {
3339
+ "message": "Image"
3340
+ },
3341
+ "source_frame/ImageView.js | imageFromS": {
3342
+ "message": "Image from {PH1}"
3343
+ },
3344
+ "source_frame/ImageView.js | openImageInNewTab": {
3345
+ "message": "Open image in new tab"
3346
+ },
3347
+ "source_frame/ImageView.js | saveImageAs": {
3348
+ "message": "Save image as..."
3349
+ },
3350
+ "source_frame/JSONView.js | find": {
3351
+ "message": "Find"
3352
+ },
3353
+ "source_frame/ModuleUIStrings.js | defaultIndentation": {
3354
+ "message": "Default indentation:"
3355
+ },
3356
+ "source_frame/ModuleUIStrings.js | eSpaces": {
3357
+ "message": "8 spaces"
3358
+ },
3359
+ "source_frame/ModuleUIStrings.js | fSpaces": {
3360
+ "message": "4 spaces"
3361
+ },
3362
+ "source_frame/ModuleUIStrings.js | setIndentationToESpaces": {
3363
+ "message": "Set indentation to 8 spaces"
3364
+ },
3365
+ "source_frame/ModuleUIStrings.js | setIndentationToFSpaces": {
3366
+ "message": "Set indentation to 4 spaces"
3367
+ },
3368
+ "source_frame/ModuleUIStrings.js | setIndentationToSpaces": {
3369
+ "message": "Set indentation to 2 spaces"
3370
+ },
3371
+ "source_frame/ModuleUIStrings.js | setIndentationToTabCharacter": {
3372
+ "message": "Set indentation to tab character"
3373
+ },
3374
+ "source_frame/ModuleUIStrings.js | sources": {
3375
+ "message": "Sources"
3376
+ },
3377
+ "source_frame/ModuleUIStrings.js | Spaces": {
3378
+ "message": "2 spaces"
3379
+ },
3380
+ "source_frame/ModuleUIStrings.js | tabCharacter": {
3381
+ "message": "Tab character"
3382
+ },
3383
+ "source_frame/PreviewFactory.js | nothingToPreview": {
3384
+ "message": "Nothing to preview"
3385
+ },
3386
+ "source_frame/ResourceSourceFrame.js | find": {
3387
+ "message": "Find"
3388
+ },
3389
+ "source_frame/SourceFrame.js | bytecodePositionXs": {
3390
+ "message": "Bytecode position 0x{PH1}"
3391
+ },
3392
+ "source_frame/SourceFrame.js | dCharactersSelected": {
3393
+ "message": "{PH1} characters selected"
3394
+ },
3395
+ "source_frame/SourceFrame.js | dLinesDCharactersSelected": {
3396
+ "message": "{PH1} lines, {PH2} characters selected"
3397
+ },
3398
+ "source_frame/SourceFrame.js | dSelectionRegions": {
3399
+ "message": "{PH1} selection regions"
3400
+ },
3401
+ "source_frame/SourceFrame.js | lineSColumnS": {
3402
+ "message": "Line {PH1}, Column {PH2}"
3403
+ },
3404
+ "source_frame/SourceFrame.js | loading": {
3405
+ "message": "Loading…"
3406
+ },
3407
+ "source_frame/SourceFrame.js | prettyPrint": {
3408
+ "message": "Pretty print"
3409
+ },
3410
+ "source_frame/SourceFrame.js | source": {
3411
+ "message": "Source"
3412
+ },
3413
+ "source_frame/XMLView.js | find": {
3414
+ "message": "Find"
3415
+ },
3416
+ "text_editor/CodeMirrorTextEditor.js | codeEditor": {
3417
+ "message": "Code editor"
3418
+ },
3419
+ "web_audio/AudioContextContentBuilder.ts | audiocontext": {
3420
+ "message": "AudioContext"
3421
+ },
3422
+ "web_audio/AudioContextContentBuilder.ts | callbackBufferSize": {
3423
+ "message": "Callback Buffer Size"
3424
+ },
3425
+ "web_audio/AudioContextContentBuilder.ts | callbackInterval": {
3426
+ "message": "Callback Interval"
3427
+ },
3428
+ "web_audio/AudioContextContentBuilder.ts | currentTime": {
3429
+ "message": "Current Time"
3430
+ },
3431
+ "web_audio/AudioContextContentBuilder.ts | maxOutputChannels": {
3432
+ "message": "Max Output Channels"
3433
+ },
3434
+ "web_audio/AudioContextContentBuilder.ts | offlineaudiocontext": {
3435
+ "message": "OfflineAudioContext"
3436
+ },
3437
+ "web_audio/AudioContextContentBuilder.ts | renderCapacity": {
3438
+ "message": "Render Capacity"
3439
+ },
3440
+ "web_audio/AudioContextContentBuilder.ts | sampleRate": {
3441
+ "message": "Sample Rate"
3442
+ },
3443
+ "web_audio/AudioContextContentBuilder.ts | state": {
3444
+ "message": "State"
3445
+ },
3446
+ "web_audio/AudioContextSelector.ts | audioContextS": {
3447
+ "message": "Audio context: {PH1}"
3448
+ },
3449
+ "web_audio/AudioContextSelector.ts | noRecordings": {
3450
+ "message": "(no recordings)"
3451
+ },
3452
+ "web_audio/web_audio-meta.ts | audio": {
3453
+ "message": "audio"
3454
+ },
3455
+ "web_audio/web_audio-meta.ts | showWebaudio": {
3456
+ "message": "Show WebAudio"
3457
+ },
3458
+ "web_audio/web_audio-meta.ts | webaudio": {
3459
+ "message": "WebAudio"
3460
+ },
3461
+ "web_audio/WebAudioView.ts | openAPageThatUsesWebAudioApiTo": {
3462
+ "message": "Open a page that uses Web Audio API to start monitoring."
3463
+ },
3464
+ "webauthn/ModuleUIStrings.ts | webauthn": {
3465
+ "message": "WebAuthn"
3466
+ },
3467
+ "webauthn/webauthn-meta.ts | showWebauthn": {
3468
+ "message": "Show WebAuthn"
3469
+ },
3470
+ "webauthn/webauthn-meta.ts | webauthn": {
3471
+ "message": "WebAuthn"
3472
+ },
3473
+ "webauthn/WebauthnPane.ts | actions": {
3474
+ "message": "Actions"
3475
+ },
3476
+ "webauthn/WebauthnPane.ts | active": {
3477
+ "message": "Active"
3478
+ },
3479
+ "webauthn/WebauthnPane.ts | add": {
3480
+ "message": "Add"
3481
+ },
3482
+ "webauthn/WebauthnPane.ts | addAuthenticator": {
3483
+ "message": "Add authenticator"
3484
+ },
3485
+ "webauthn/WebauthnPane.ts | authenticatorS": {
3486
+ "message": "Authenticator {PH1}"
3487
+ },
3488
+ "webauthn/WebauthnPane.ts | credentials": {
3489
+ "message": "Credentials"
3490
+ },
3491
+ "webauthn/WebauthnPane.ts | editName": {
3492
+ "message": "Edit name"
3493
+ },
3494
+ "webauthn/WebauthnPane.ts | enableVirtualAuthenticator": {
3495
+ "message": "Enable virtual authenticator environment"
3496
+ },
3497
+ "webauthn/WebauthnPane.ts | export": {
3498
+ "message": "Export"
3499
+ },
3500
+ "webauthn/WebauthnPane.ts | id": {
3501
+ "message": "ID"
3502
+ },
3503
+ "webauthn/WebauthnPane.ts | isResident": {
3504
+ "message": "Is Resident"
3505
+ },
3506
+ "webauthn/WebauthnPane.ts | learnMore": {
3507
+ "message": "Learn more"
3508
+ },
3509
+ "webauthn/WebauthnPane.ts | newAuthenticator": {
3510
+ "message": "New authenticator"
3511
+ },
3512
+ "webauthn/WebauthnPane.ts | no": {
3513
+ "message": "No"
3514
+ },
3515
+ "webauthn/WebauthnPane.ts | noCredentialsTryCallingSFromYour": {
3516
+ "message": "No credentials. Try calling {PH1} from your website."
3517
+ },
3518
+ "webauthn/WebauthnPane.ts | privateKeypem": {
3519
+ "message": "Private key.pem"
3520
+ },
3521
+ "webauthn/WebauthnPane.ts | protocol": {
3522
+ "message": "Protocol"
3523
+ },
3524
+ "webauthn/WebauthnPane.ts | remove": {
3525
+ "message": "Remove"
3526
+ },
3527
+ "webauthn/WebauthnPane.ts | rpId": {
3528
+ "message": "RP ID"
3529
+ },
3530
+ "webauthn/WebauthnPane.ts | saveName": {
3531
+ "message": "Save name"
3532
+ },
3533
+ "webauthn/WebauthnPane.ts | setSAsTheActiveAuthenticator": {
3534
+ "message": "Set {PH1} as the active authenticator"
3535
+ },
3536
+ "webauthn/WebauthnPane.ts | signCount": {
3537
+ "message": "Sign Count"
3538
+ },
3539
+ "webauthn/WebauthnPane.ts | supportsResidentKeys": {
3540
+ "message": "Supports resident keys"
3541
+ },
3542
+ "webauthn/WebauthnPane.ts | supportsUserVerification": {
3543
+ "message": "Supports user verification"
3544
+ },
3545
+ "webauthn/WebauthnPane.ts | transport": {
3546
+ "message": "Transport"
3547
+ },
3548
+ "webauthn/WebauthnPane.ts | userHandle": {
3549
+ "message": "User Handle"
3550
+ },
3551
+ "webauthn/WebauthnPane.ts | useWebauthnForPhishingresistant": {
3552
+ "message": "Use WebAuthn for phishing-resistant authentication"
3553
+ },
3554
+ "webauthn/WebauthnPane.ts | uuid": {
3555
+ "message": "UUID"
3556
+ },
3557
+ "webauthn/WebauthnPane.ts | yes": {
3558
+ "message": "Yes"
3559
+ },
3560
+ "workspace/UISourceCode.js | index": {
3561
+ "message": "(index)"
3562
+ },
3563
+ "workspace/UISourceCode.js | thisFileWasChangedExternally": {
3564
+ "message": "This file was changed externally. Would you like to reload it?"
3565
+ }
3566
+ }