├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── .well-known └── web-app-origin-association ├── Gemfile ├── LICENSE ├── README.md ├── SAMPLE_STARTING_POINT ├── README.md ├── demo.js └── index.html ├── _config.yml ├── _includes ├── css_snippet.html ├── html_snippet.html ├── js_snippet.html └── output_helper.html ├── _layouts └── default.html ├── allow-popups-to-escape-sandbox ├── README.md ├── iframe.html ├── index.html └── popup.html ├── app-install-banner ├── basic-banner │ ├── index.html │ ├── launcher-icon-0-75x.png │ ├── launcher-icon-1-5x.png │ ├── launcher-icon-1x.png │ ├── launcher-icon-2x.png │ ├── launcher-icon-3x.png │ ├── launcher-icon-4x.png │ ├── manifest.json │ ├── readme.md │ └── service-worker.js ├── cancelable-banner │ ├── index.html │ ├── launcher-icon-0-75x.png │ ├── launcher-icon-1-5x.png │ ├── launcher-icon-1x.png │ ├── launcher-icon-2x.png │ ├── launcher-icon-3x.png │ ├── launcher-icon-4x.png │ ├── manifest.json │ ├── readme.md │ └── service-worker.js ├── deferred-banner │ ├── index.html │ ├── launcher-icon-0-75x.png │ ├── launcher-icon-1-5x.png │ ├── launcher-icon-1x.png │ ├── launcher-icon-2x.png │ ├── launcher-icon-3x.png │ ├── launcher-icon-4x.png │ ├── manifest.json │ ├── readme.md │ └── service-worker.js ├── index.html ├── related-applications │ ├── index.html │ ├── launcher-icon-0-75x.png │ ├── launcher-icon-1-5x.png │ ├── launcher-icon-1x.png │ ├── launcher-icon-2x.png │ ├── launcher-icon-3x.png │ ├── launcher-icon-4x.png │ ├── manifest.json │ └── readme.md └── useraction-banner │ ├── index.html │ ├── launcher-icon-0-75x.png │ ├── launcher-icon-1-5x.png │ ├── launcher-icon-1x.png │ ├── launcher-icon-2x.png │ ├── launcher-icon-3x.png │ ├── launcher-icon-4x.png │ ├── manifest.json │ ├── readme.md │ └── service-worker.js ├── array-includes-es7 ├── README.md ├── demo.js └── index.html ├── array-methods-es6 ├── .eslintrc ├── README.md ├── demo1.js ├── demo2.js ├── demo3.js ├── demo4.js ├── demo5.js ├── demo6.js ├── demo7.js ├── demo8.js └── index.html ├── arrows-es6 ├── README.md ├── demo.js └── index.html ├── async-clipboard-image ├── Chromium_Material_Icon.png ├── Google_Chrome_Material_Icon-450x450.png ├── index.html ├── index.js └── style.css ├── async-clipboard-text ├── index.html ├── script.js └── style.css ├── async-clipboard ├── README.md ├── demo.css ├── demo.js └── index.html ├── audio-splitter └── index.html ├── audio └── techno.wav ├── auto-picture-in-picture ├── index.html ├── index.js ├── launcher-icon-0-75x.png ├── launcher-icon-1-5x.png ├── launcher-icon-1x.png ├── launcher-icon-2x.png ├── launcher-icon-3x.png ├── launcher-icon-4x.png ├── manifest.json └── service-worker.js ├── autocapitalize ├── index.html └── readme.md ├── badging-api ├── common.js ├── demo.js ├── index.html ├── manifest.json ├── style.css └── sw.js ├── battery-status ├── README.md ├── demo.js └── index.html ├── beacon ├── README.md ├── demo.js └── index.html ├── block-modal-dialogs-sandboxed-iframe ├── README.md ├── iframe.html └── index.html ├── built-in-ai-rocks ├── .prettierrc ├── index.html ├── index_basic.html ├── index_jsonschema.html ├── index_jsonschema_multimodal.html ├── index_multimodal.html ├── script_basic.js ├── script_jsonschema.js ├── script_jsonschema_multimodal.js ├── script_multimodal.js ├── style.css └── thomas-steiner.jpg ├── classes-es6 ├── README.md ├── demo.js └── index.html ├── collections-iterators-es6 ├── README.md ├── demo.js └── index.html ├── compressionstream-demo ├── index.html ├── lorem.txt ├── script.js └── style.css ├── compute-pressure ├── README.md ├── index.html ├── index.js └── normalize.css ├── computed-properties-es6 ├── README.md └── index.html ├── contact-picker ├── demo.js ├── index.html └── style.css ├── cookie-prefixes ├── README.md ├── demo.js └── index.html ├── cos-demo ├── huggingface.html ├── huggingface.js ├── index.html ├── sentiment-analysis-model.bin └── util.js ├── csp-upgrade-insecure-requests ├── README.md └── index.html ├── css-alpha-channel ├── README.md └── index.html ├── css-attribute-case-sensitivity ├── README.md └── index.html ├── css-custom-properties ├── README.md ├── demo.js └── index.html ├── css-escape ├── README.md ├── demo.js └── index.html ├── css-flexbox-abspos ├── README.md └── index.html ├── css-hyphens ├── README.md └── index.html ├── css-intrinsic-sizing ├── README.md └── index.html ├── css-motion-path ├── README.md ├── demo.js └── index.html ├── css-opacity-force-flattening ├── README.md ├── after-chrome-53.png ├── before-chrome-53.png └── index.html ├── css-shapes ├── README.md ├── cat.png └── index.html ├── css-will-change-transform-rasterization ├── README.md ├── demo.js └── index.html ├── custom-drag-and-drop ├── index.html └── styles.css ├── cut-and-copy ├── README.md ├── demo.js └── index.html ├── dark-mode-class-toggle ├── index.html ├── script.js └── style.css ├── decorators-es7 └── read-write │ ├── README.md │ ├── gulpfile.js │ ├── package.json │ └── src │ ├── favicon.ico │ ├── index.html │ ├── scripts │ ├── app-core.js │ ├── controllers │ │ └── SampleController.js │ └── libs │ │ └── ReadWrite │ │ ├── DOMManager.js │ │ ├── LayoutTriggers.js │ │ └── ReadWrite.js │ └── styles │ └── app-core.scss ├── default-parameters-es6 ├── README.md ├── demo.js └── index.html ├── designcember-calculator ├── als.js ├── calculator.js ├── index.html ├── manifest.json ├── script.js ├── style.css ├── sw.js └── wco.js ├── destructuring-es6 ├── README.md ├── demo.js └── index.html ├── dialog ├── README.md ├── demo.js └── index.html ├── downloading-built-in-models ├── .prettierrc ├── gemini.html ├── gemini.js ├── index.html ├── main.js ├── settings.json └── style.css ├── encoding-api ├── README.md ├── demo.js ├── index.html ├── macintosh.bin ├── utf16le.bin └── utf8.bin ├── event-istrusted ├── README.md ├── demo.js └── index.html ├── event-listeners-mandatory-arguments ├── README.md ├── demo.js └── index.html ├── event-timestamp ├── README.md ├── demo.js └── index.html ├── examplescript-to-wasm ├── binaryen.js ├── compiler.js ├── index.html ├── parser.js ├── script.js └── style.css ├── extended-object-literals-es6 ├── README.md ├── demo.js └── index.html ├── extended-unicode-escapes ├── README.md └── index.html ├── factorial-wasm-ad-hoc-worker ├── factorial.wasm ├── index.html ├── script.js └── style.css ├── factorial-wasm-permanent-worker ├── factorial.wasm ├── index.html ├── script.js └── style.css ├── fetch-api ├── README.md ├── fetch-html-demo.js ├── fetch-html.html ├── fetch-json-demo.js ├── fetch-json.html ├── fetch-post-demo.js ├── fetch-post.html ├── fetch-reddit-demo.js ├── fetch-reddit.html ├── fetch-referrer-policy.html ├── fetch-referrer-policy.js ├── fetch-response-metadata-demo.js ├── fetch-response-metadata.html ├── fetch-response-stream.html ├── fetch-success-error-handlers-demo.js ├── fetch-success-error-handlers.html ├── users.html └── users.json ├── file-constructor ├── README.md └── index.html ├── file-system-observer ├── index.html ├── observer.js ├── random.js └── style.css ├── focus-navigation-start-point ├── README.md ├── index.html └── styles.css ├── font-face-set ├── .eslintrc ├── README.md ├── demo.js └── index.html ├── formdata-methods ├── README.md ├── demo.js └── index.html ├── fullscreen-keyboard-lock ├── index.html ├── script.js └── style.css ├── gamepad-demo ├── index.html ├── script.js └── style.css ├── generators ├── README.md └── index.html ├── glitch-migration ├── canvas2d │ └── demo │ │ ├── index.html │ │ ├── pattern.js │ │ ├── retro.html │ │ └── roundRect.html ├── custom-formats-clipboard │ ├── image.avif │ ├── index.html │ ├── script.js │ └── style.css ├── darkmode │ ├── baseline │ │ ├── README.md │ │ ├── assets │ │ │ ├── 791b2241-459b-4a2e-8cca-c0fdc21f0487_baseline-wb_incandescent-24px.svg │ │ │ ├── 791b2241-459b-4a2e-8cca-c0fdc21f0487_baseline-wb_sunny-24px.svg │ │ │ ├── 791b2241-459b-4a2e-8cca-c0fdc21f0487_dark.png │ │ │ ├── 791b2241-459b-4a2e-8cca-c0fdc21f0487_light.png │ │ │ └── 791b2241-459b-4a2e-8cca-c0fdc21f0487_mockaroon-1333674-unsplash.jpg │ │ ├── dark.css │ │ ├── darkmode.js │ │ ├── index.html │ │ ├── light.css │ │ ├── manifest-dark.webmanifest │ │ ├── manifest-light.webmanifest │ │ └── style.css │ ├── currentcolor │ │ ├── README.md │ │ ├── chrome.svg │ │ ├── dark.css │ │ ├── index.html │ │ ├── light.css │ │ └── style.css │ └── picture │ │ ├── README.md │ │ ├── assets │ │ ├── 480px-Blue_Marble_Eastern_Hemisphere.jpg │ │ ├── 695100d4-5f7f-4ac4-b051-5a7cc71f3b3f_480px-Blue_Marble_Eastern_Hemisphere.jpg │ │ └── 695100d4-5f7f-4ac4-b051-5a7cc71f3b3f_480px-Blue_Marble_Western_Hemisphere.jpg │ │ └── index.html ├── keyboard-lock │ ├── index.html │ ├── script.js │ └── style.css ├── svg-copy-paste │ ├── circles.svg │ ├── index.html │ ├── script.js │ └── style.css ├── unsanitized-clipboard │ ├── index.html │ ├── script.js │ └── style.css └── url-parts │ ├── css │ └── main.css │ ├── favicon.ico │ ├── images │ └── icons │ │ └── icon256.png │ ├── index.html │ ├── js │ ├── main.js │ ├── psl.js │ └── tld.js │ ├── manifest.json │ └── package.json ├── handwriting-recognition ├── index-ClEgWSF6.js └── index.html ├── hdcp-detection ├── index.html └── index.js ├── highlighttext-systemcolor ├── index.html └── style.css ├── idb-getall ├── README.md ├── demo.js └── index.html ├── idle-detection ├── dark_mode.mjs ├── idle_detection.mjs ├── index.html ├── manifest.webmanifest ├── script.mjs └── style.css ├── image-capture ├── README.md ├── background-blur.css ├── background-blur.html ├── background-blur.js ├── grab-frame-take-photo.css ├── grab-frame-take-photo.html ├── grab-frame-take-photo.js ├── index.html ├── photo-resolution.css ├── photo-resolution.html ├── photo-resolution.js ├── update-camera-zoom.css ├── update-camera-zoom.html └── update-camera-zoom.js ├── image-rendering-pixelated ├── README.md └── index.html ├── images ├── apple-touch-icon-precomposed.png ├── favicon.ico └── touch │ ├── chrome-touch-icon-192x192.png │ ├── icon-128x128.png │ └── ms-touch-icon-144x144-precomposed.png ├── index.html ├── indexeddb-observers ├── .eslintrc ├── README.md ├── demo.js └── index.html ├── input-device-capabilities ├── README.md ├── demo.js └── index.html ├── input-type-file ├── index.html └── styles.css ├── intersectionobserver ├── README.md ├── demo.js └── index.html ├── intrinsic-size ├── README.md ├── cat.jpg ├── index.html ├── sized.html ├── unsized.html └── width_only.html ├── keyboardevent-code-attribute ├── README.md ├── demo.js └── index.html ├── keyboardevent-key-attribute ├── README.md ├── demo.js └── index.html ├── kotlin-wasm-hello-world ├── index.html ├── kotlin-wasm-browser-example-wasm-js.wasm ├── kotlin-wasm-browser-example-wasm.wasm ├── kotlin-wasm-browser-example.js └── kotlin-wasm-browser-example.js.map ├── lexical-declarations-es6 ├── README.md └── index.html ├── local-font-access ├── font-select.mjs ├── index.html ├── script.js └── style.css ├── media-capabilities ├── decoding-info-eme.html ├── decoding-info-eme.js ├── decoding-info.html └── decoding-info.js ├── media-hover-pointer ├── README.md └── index.html ├── media-session ├── README.md ├── audio.html ├── audio.js ├── index.html ├── slides.html ├── slides.js ├── video-conferencing.html ├── video-conferencing.js ├── video.html └── video.js ├── media ├── color-gamut-media-query.html ├── color-gamut-media-query.js ├── controlslist-noplaybackrate.html ├── controlslist-noplaybackrate.js ├── controlslist.html ├── error-message.html ├── error-message.js ├── flac-in-mp4-for-mse.html ├── flac-in-mp4-for-mse.js ├── key-session-closed-reason.html ├── key-session-closed-reason.js ├── live-seekable-range.html ├── live-seekable-range.js ├── no_streams.webm ├── opus-in-mp4-for-mse.html ├── opus-in-mp4-for-mse.js ├── playback-rate-exception.html ├── playback-rate-exception.js ├── preload-metadata.html ├── preload-metadata.js ├── sourcebuffer-changetype.html ├── sourcebuffer-changetype.js ├── vp9-codec-string.html └── vp9-codec-string.js ├── mediapipe-llm ├── LICENSE ├── README.md ├── index.html ├── script.js └── style.css ├── mediastreamtrack ├── index.html ├── script.js └── style.css ├── mkbitmap ├── index.html ├── mkbitmap.js ├── mkbitmap.wasm ├── pbmimage.js ├── script.js └── style.css ├── mouseevent-get-modifier-state ├── README.md ├── demo.js └── index.html ├── multi-column-css ├── README.md └── index.html ├── muted-autoplay ├── README.md ├── chrome-clip.mp4 ├── index.html └── styles.css ├── network-information ├── README.md ├── demo.js └── index.html ├── new-target-es6 ├── .eslintrc ├── README.md ├── demo.js └── index.html ├── notifications ├── .eslintrc ├── README.md ├── index.html ├── requireInteraction.html ├── sw.js └── vibrate.html ├── object-assign-es6 ├── README.md ├── demo.js └── index.html ├── offline-fallback-demo ├── index.html ├── index2.html ├── offline.html ├── script.js ├── service-worker.js └── style.css ├── package.json ├── paymentrequest ├── README.md ├── can-make-payment │ ├── demo.js │ └── index.html ├── contact-info │ ├── demo.js │ └── index.html ├── dynamic-shipping │ ├── demo.js │ └── index.html ├── free-shipping │ ├── demo.js │ └── index.html ├── google-pay │ ├── demo.js │ └── index.html ├── index.html ├── payment-handler │ ├── demo.js │ └── index.html ├── shipping-options │ ├── demo.js │ └── index.html └── stickersheet │ ├── PR-API-Stickersheet-Chrome_Android-V1.00.sketch │ ├── images │ └── example.png │ └── index.html ├── permissions ├── README.md └── index.html ├── picture-element ├── README.md ├── images │ ├── butterfly.jpg │ ├── butterfly.webp │ ├── butterfly_small.jpg │ ├── kitten-large.png │ ├── kitten-medium.png │ └── kitten-small.png └── index.html ├── picture-in-picture ├── audio-playlist.html ├── audio-playlist.js ├── css-pseudo-class.html ├── css-pseudo-class.js ├── index.html ├── index.js ├── skip-ad.html └── skip-ad.js ├── play-return-promise ├── README.md ├── demo.js └── index.html ├── presentation-api ├── README.md ├── cast.html ├── index.html └── receiver │ ├── index.html │ └── receiver.js ├── promise-rejection-events ├── README.md ├── demo.js └── index.html ├── prompt-api-iframe ├── .prettierrc ├── index.html └── service-worker.js ├── proxies-es6 ├── README.md ├── demo.js └── index.html ├── push-messaging-and-notifications ├── .eslintrc ├── README.md ├── config.sample.js ├── demo.js ├── images │ └── icon-192x192.png ├── index.html ├── main.js ├── manifest.sample.json └── service-worker.js ├── pwa-testing ├── README.md ├── absorbing-immediate-middle │ ├── absorbing-immediate-middle-1.png │ ├── fugu.png │ ├── index.html │ ├── manifest.json │ ├── serviceworker.js │ └── style.css ├── abyssinian-sparkly-entree │ ├── abyssinian-sparkly-entree.png │ ├── index.html │ ├── manifest.webmanifest │ └── serviceworker.js ├── aeolian-grandiose-cayenne │ ├── aeolian-grandiose-cayenne.png │ ├── in-scope.html │ ├── index.html │ ├── lock-screen │ │ └── index.html │ ├── manifest.webmanifest │ ├── new-note.html │ └── sw.js ├── aluminum-cooked-kidney │ ├── canvas.png │ ├── favicon.png │ ├── folder │ │ └── three.html │ ├── home.png │ ├── icon.svg │ ├── image.png │ ├── index.html │ ├── manifest.json │ ├── one.html │ ├── paint-rightful-patch.svg │ ├── right.png │ ├── serviceworker.js │ ├── two.html │ └── wrong.png ├── app-name-icon-tester │ ├── efficient-newt-1.png │ ├── efficient-newt-2.png │ ├── index.html │ ├── main.js │ └── serviceworker.js ├── awesome-casquette │ ├── blue-192.png │ ├── fast.html │ ├── image-target │ │ ├── README │ │ ├── experiment.html │ │ ├── index.html │ │ ├── manifest.json │ │ ├── next.html │ │ ├── poster.html │ │ ├── poster.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── index.html │ ├── manifest.json │ ├── medium.html │ ├── partial-wild │ │ ├── gold.svg │ │ ├── index.html │ │ ├── manifest.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── receive-get │ │ ├── form.html │ │ ├── index.html │ │ ├── manifest.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── receive-url │ │ ├── index.html │ │ ├── manifest.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── s1.png │ ├── s2.png │ ├── s3.png │ ├── s4.png │ ├── s5.png │ ├── service_worker.js │ ├── shortcuts │ │ ├── index.html │ │ └── manifest.json │ ├── slow.html │ └── webp_icon_screenshot.png ├── badging-test │ ├── Screenshot_20191002_150105.png │ ├── common.js │ ├── demo.js │ ├── index.html │ ├── log.js │ ├── manifest.json │ ├── sadpanda.png │ ├── style.css │ └── sw.js ├── believed-triceratops │ ├── icon-192.jpg │ ├── icon-512.jpg │ ├── index.html │ ├── manifest.json │ ├── script.js │ └── style.css ├── broken-synonymous-air │ ├── index.js │ ├── notch-candle-shape.svg │ ├── package-lock.json │ └── package.json ├── bubblewrap-issue-883 │ ├── .well-known │ │ └── assetlinks.json │ ├── app │ │ ├── index.html │ │ ├── inner │ │ │ └── index.html │ │ ├── manifest.json │ │ └── style.css │ ├── illustration.svg │ ├── index.html │ ├── manifest.json │ ├── package.json │ └── style.css ├── bubbly-checkered-airport │ ├── common.js │ ├── demo.js │ ├── fugu-128.png │ ├── fugu-144.png │ ├── fugu-152.png │ ├── fugu-192.png │ ├── fugu-256.png │ ├── fugu-512.png │ ├── fugu-monochrome-weird.png │ ├── index.html │ ├── manifest.json │ ├── style.css │ └── sw.js ├── bush-lowly-system │ ├── aqua-32.png │ ├── fuchsia-96.png │ ├── illustration.svg │ ├── index.html │ ├── mandelbrot-16.png │ ├── mandelbrot-192.png │ ├── mandelbrot-20.png │ ├── mandelbrot-32.png │ ├── mandelbrot-48.png │ ├── mandelbrot-64.png │ ├── mandelbrot-96.png │ ├── manifest.json │ ├── maroon-16.png │ ├── navy-64.png │ ├── olive-20.png │ ├── purple-192.png │ ├── rectangle.html │ ├── script.js │ ├── service_worker.js │ ├── style.css │ └── teal-48.png ├── butternut-shocking-deerstalker │ ├── index.html │ ├── inner │ │ ├── index.html │ │ ├── main.js │ │ └── manifest.webmanifest │ ├── openart-image_R7BfYY8S_1714508166662_raw.png │ └── package-lock.json ├── cache-api-perf │ ├── .gcloudignore │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── client.js │ │ ├── empty.txt │ │ ├── order.html │ │ ├── parallel.html │ │ ├── put.html │ │ ├── script.html │ │ ├── script_sw.js │ │ ├── sequential.html │ │ └── style.css │ └── views │ │ └── index.html ├── carnelian-sneeze │ ├── index.html │ ├── main.js │ ├── manifest.json │ ├── sadpanda.png │ └── sw.js ├── carpal-acute-respect │ ├── blackwhitebars-min.svg │ ├── fir-skirt.svg │ ├── fixed-size │ │ ├── index.html │ │ └── manifest.webmanifest │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── min_icon_broken.svg │ ├── min_icon_fixed.svg │ ├── moma-broken │ │ ├── index.html │ │ └── manifest.webmanifest │ ├── moma-fixed │ │ ├── index.html │ │ └── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── chat-app-deep-linking │ ├── db.js │ ├── fake-chat-app-icon.png │ ├── helpers.js │ ├── index.html │ ├── manifest.json │ ├── script.js │ ├── second-page.html │ ├── style.css │ ├── sw.js │ └── uyVZtLtx52ErPcT.png ├── cheerful-plausible-bite │ ├── cheerful-plausible-bite.svg │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── classic-tall-individual │ ├── classic-tall-individual-spoof.svg │ ├── classic-tall-individual.svg │ ├── index.html │ ├── manifest.json │ ├── spoof-manifest.json │ ├── start.html │ └── sw.js ├── continuous-harvest-tomato │ ├── continuous-harvest-tomato.svg │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── curious-sun-catboat │ ├── curious-sun-catboat-3.jpeg │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── cute-western-seer │ ├── Seer144.jpg │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── random.jpeg │ ├── random2.jpeg │ ├── random2_narrow.jpeg │ ├── random3.jpeg │ ├── random3_narrow.jpeg │ ├── random_narrow.jpeg │ ├── serviceworker.js │ └── untitled.png ├── daisy-summer-mahogany │ ├── daisy-summer-mahogany.png │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ └── sw.js ├── delirious-twilight-scene │ ├── delirious-twilight-scene-192.png │ ├── delirious-twilight-scene-48.png │ ├── delirious-twilight-scene-512.png │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── denim-unique-blackbird │ ├── BlackbirdJeans_144.jpeg │ ├── BlackbirdJeans_144.svg │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── one.html │ ├── package-lock.json │ └── serviceworker.js ├── dull-axiomatic-saver │ ├── dull-axiomatic-saver.png │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── dull-axiomatic-saver2 │ ├── dull-axiomatic-saver.png │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── efficient-newt-1 │ ├── efficient-newt-1.png │ ├── efficient-newt-2.png │ ├── index.html │ ├── main.js │ ├── package-lock.json │ └── serviceworker.js ├── emphasized-shell-feeling │ ├── blackwhitebars.svg │ ├── emphasised-shell-feeling (1).png │ ├── emphasised-shell-feeling.png │ ├── fir-skirt.svg │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ ├── subpage │ │ ├── absolute │ │ │ ├── index.html │ │ │ └── manifest.webmanifest │ │ ├── index.html │ │ └── manifest.webmanifest │ └── test.svg ├── excited-dented-seashore │ ├── Seashore144.png │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── exciting-scarlet-scabiosa │ ├── common.js │ ├── demo.js │ ├── fugu-128.png │ ├── fugu-144.png │ ├── fugu-152.png │ ├── fugu-192.png │ ├── fugu-256.png │ ├── fugu-512.png │ ├── index.html │ ├── manifest.json │ ├── sadpanda.png │ ├── style.css │ └── sw.js ├── external-install-file-handling │ ├── ai-icon.png │ ├── classic-tall-individual-spoof.svg │ ├── classic-tall-individual.svg │ ├── index.html │ ├── main.js │ ├── manifest-with-file-handlers.json │ ├── manifest.json │ ├── spoof-manifest.json │ ├── start.html │ └── sw.js ├── fake-chat-app-companion │ ├── fake-chat-companion-icon.png │ ├── index.html │ ├── style.css │ └── testmessage.fakechat ├── far-noble-cod │ ├── far-noble-cod.png │ ├── index.html │ ├── manifest.json │ └── package-lock.json ├── fetch-event-echo │ ├── .gcloudignore │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── client.js │ │ ├── empty.html │ │ ├── index-with-frame.html │ │ ├── style.css │ │ ├── style.html │ │ ├── sw.js │ │ ├── worker-fetch.js │ │ ├── worker-location.js │ │ └── worker-scratch.js │ └── views │ │ ├── index.html │ │ └── upgrader.html ├── fir-skirt │ ├── fir-skirt.svg │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── flossy-neon-sugar │ ├── canvas.png │ ├── favicon.png │ ├── folder │ │ └── three.html │ ├── home.png │ ├── icon.svg │ ├── image.png │ ├── index.html │ ├── launch-queue.js │ ├── manifest.json │ ├── one.html │ ├── paint-rightful-patch.svg │ ├── right.png │ ├── two.html │ └── wrong.png ├── flower-confused-dinosaur │ ├── FCD128.jpeg │ ├── FCD16.jpg │ ├── FCD256.jpeg │ ├── FCD32.jpeg │ ├── FCD48.jpeg │ ├── FCD512.jpg │ ├── FCD64.jpeg │ ├── FCD96.jpeg │ ├── index.html │ └── style.css ├── furry-hickory-furniture │ ├── 2020_07_10_Kleki.png │ ├── Screen Shot 2022-07-07 at 11.52.46 AM.png │ ├── Screen Shot 2022-07-07 at 11.52.52 AM.png │ ├── bar │ │ ├── bar_manifest.webmanifest │ │ ├── hickory_bar.png │ │ └── index.html │ ├── favicon.ico │ ├── foo │ │ ├── foo_manifest.webmanifest │ │ ├── hickory_foo.png │ │ └── index.html │ ├── index.html │ ├── main.js │ └── serviceworker.js ├── global-swordfish │ ├── Play Billing Demo Logo.png │ ├── app.js │ ├── check-state.js │ ├── favicon-144x144.png │ ├── favicon.ico │ ├── https-redirect.js │ ├── index.html │ ├── manifest.json │ ├── service-worker.js │ ├── sku-details.js │ ├── sku-manager.js │ ├── sku-purchase-history.js │ └── style.css ├── glossy-cuboid-attention │ ├── glossy-cuboid-attention.svg │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── halved-cubic-postage │ ├── halved-cubic-postage.svg │ ├── index.html │ ├── manifest.json │ └── package-lock.json ├── huge-name-that-is-definitely-more-than-the-app │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── random.jpeg │ ├── random2.jpeg │ ├── random2_narrow.jpeg │ ├── random3.jpeg │ ├── random3_narrow.jpeg │ ├── random_narrow.jpeg │ ├── serviceworker.js │ └── untitled.png ├── hulking-tangible-badger │ ├── hulking-manifest.json │ ├── hulking-tangible-badger.svg │ ├── index.html │ ├── normal-manifest.json │ ├── normal-tangible-badger.svg │ ├── package-lock.json │ └── sw.js ├── hwr-playground │ ├── index.html │ ├── mock-recognizer.js │ ├── origin-trial-helper.js │ ├── script.js │ └── style.css ├── incandescent-ginger-voyage │ ├── craiyon_124501_drawing_of_a_brightly_glowing_ginger_root_on_a_criuse_ship.png │ ├── incandescent-ginger-voyage.png │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── index.html ├── intriguing-veiled-butternut │ ├── VeiledButternut144.jpeg │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── invincible-syringa │ ├── .gcloudignore │ ├── index.js │ ├── invincible-syringa.png │ ├── package-lock.json │ ├── package.json │ └── public │ │ ├── index.html │ │ ├── invincible-syringa.png │ │ ├── main.js │ │ ├── manifest.webmanifest │ │ └── serviceworker.js ├── joyous-horse-quilt │ ├── classic-tall-individual-spoof.svg │ ├── classic-tall-individual.svg │ └── index.html ├── kaput-planet-radon │ ├── in-scope.html │ ├── index.html │ ├── kaput-planet-radon.png │ ├── lock-screen │ │ └── index.html │ ├── manifest.webmanifest │ ├── new-note.html │ ├── package-lock.json │ └── sw.js ├── large-productive-rattlesnake │ ├── index.html │ ├── large-productive-rattlesnake.png │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ ├── spicon.png │ └── spup.png ├── level-sedate-baboon │ ├── b-128.png │ ├── b-16.png │ ├── b-24.png │ ├── b-256.png │ ├── b-32.png │ ├── b-48.png │ ├── b-64.png │ ├── g-128.png │ ├── g-16.png │ ├── g-24.png │ ├── g-256.png │ ├── g-32.png │ ├── g-48.png │ ├── g-64.png │ ├── index.html │ ├── level-sedate-baboon-2.webp │ ├── manifest.json │ ├── package-lock.json │ └── serviceworker.js ├── living-reminder │ ├── .bash_history │ ├── 144.png │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── lofty-transparent-donut │ ├── common.js │ ├── demo.js │ ├── fugu-128.png │ ├── fugu-144.png │ ├── fugu-152.png │ ├── fugu-192.png │ ├── fugu-256.png │ ├── fugu-512.png │ ├── fugu-monochrome-weird.png │ ├── index.html │ ├── manifest.json │ ├── style.css │ └── sw.js ├── luck-proud-nautilus │ ├── badicon.ico │ ├── index.html │ ├── manifest.json │ ├── proud nautilus.png │ ├── scope │ │ └── scoped.html │ ├── script.js │ └── style.css ├── main-pwa-origin-2 │ ├── .prettierrc │ ├── .well-known │ │ └── web-app-origin-association.json │ ├── apple-touch-icon.png │ ├── index-2.html │ ├── index.html │ ├── manifest.json │ ├── script.js │ └── sw.js ├── maize-bustling-reminder │ ├── index.html │ ├── maize.png │ ├── manifest.json │ ├── serviceworker.js │ └── style.css ├── maze-bouncy-viola │ ├── .gcloudignore │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── a │ │ │ ├── index.html │ │ │ ├── index2.html │ │ │ ├── main.js │ │ │ ├── manifest.webmanifest │ │ │ └── serviceworker.js │ │ ├── b │ │ │ ├── index.html │ │ │ ├── index2.html │ │ │ ├── main.js │ │ │ ├── manifest.webmanifest │ │ │ └── serviceworker.js │ │ ├── index.html │ │ ├── style.css │ │ ├── windvet.png │ │ └── windvetb.png │ ├── windvet.png │ └── windvetb.png ├── mediapicker-select-file │ ├── .gitignore │ ├── LICENSE │ ├── TODO.md │ ├── illustration.svg │ ├── index.html │ ├── script.js │ └── style.css ├── midi-tourmaline-handbell │ ├── .well-known │ │ └── web-app-origin-association │ ├── LICENSE │ ├── fugu.png │ ├── illustration.svg │ ├── index.html │ ├── manifest.json │ ├── script.js │ └── style.css ├── mobile-desktop-mode │ ├── LICENSE │ ├── illustration.svg │ ├── index.html │ └── style.css ├── morning-bubbly-chauffeur │ ├── Chromium_Material_Icon.png │ ├── app.js │ ├── check-state.js │ ├── favicon-144x144.png │ ├── favicon.ico │ ├── file-editor.js │ ├── index.html │ ├── manifest.json │ ├── service-worker.js │ └── style.css ├── motley-petite-friday │ ├── e4cdcd8f3d76069650b67862ec8996ff.jpeg │ ├── icon.jpeg │ ├── icon144.jpg │ ├── icon144.png │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── mulberry-phase-leopon │ ├── app │ │ ├── app.html │ │ ├── d4a74359-1e23-40e9-94f8-924329a4507b.image.png │ │ └── manifest.webmanifest │ ├── d4a74359-1e23-40e9-94f8-924329a4507b.image.png │ ├── index.html │ ├── main.js │ ├── serviceworker.js │ └── style.css ├── nice-spiny-responsibility │ ├── badicon.ico │ ├── index.html │ ├── manifest.json │ ├── proud nautilus.png │ ├── scope │ │ └── scoped.html │ ├── script.js │ └── style.css ├── nifty-lavender-anglerfish │ ├── LICENSE │ ├── TODO.md │ ├── illustration.svg │ ├── index.html │ ├── radio.svg │ ├── script.js │ └── style.css ├── noiseless-mum │ ├── icon-192.jpg │ ├── icon-192.png │ ├── icon-512.jpg │ ├── index.html │ ├── manifest.json │ ├── new │ │ └── index.html │ ├── noscope-nomanifest.html │ ├── noscope.html │ ├── scope │ │ └── scoped.html │ ├── script.js │ └── style.css ├── noon-stream-music │ ├── index.html │ ├── main.js │ ├── manifest.json │ ├── noon-stream-music.svg │ └── package-lock.json ├── notch-candle-shape │ ├── index.js │ ├── notch-candle-shape.svg │ ├── package-lock.json │ └── package.json ├── notificationsapi │ ├── common.js │ ├── demo.js │ ├── fugu-128.png │ ├── fugu-144.png │ ├── fugu-152.png │ ├── fugu-192.png │ ├── fugu-256.png │ ├── fugu-512.png │ ├── fugu-monochrome-weird.png │ ├── index.html │ ├── manifest.json │ ├── style.css │ └── sw.js ├── octagonal-eight-potato │ ├── .gcloudignore │ ├── .gitignore │ ├── LICENSE │ ├── illustration.svg │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── icon-192.png │ │ ├── icon-512.png │ │ ├── style.css │ │ └── sw.js │ └── src │ │ └── pages │ │ ├── index.hbs │ │ ├── manifest.json.hbs │ │ └── share.hbs ├── octagonal-handsomely-burrito │ ├── Octagonal Burrito.jpeg │ ├── SmallBurrito.jpeg │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── paint-rightful-patch │ ├── favicon.png │ ├── folder │ │ └── three.html │ ├── house.png │ ├── index.html │ ├── manifest.json │ ├── monochrome smiley.png │ ├── monochrome_smiley2.png │ ├── one.html │ ├── paint-rightful-patch.svg │ ├── pink_smiley-removebg-preview.png │ ├── pink_smiley.png │ ├── serviceworker.js │ └── two.html ├── parallel-omniscient-barberry │ ├── app.js │ ├── app2 │ │ ├── appindex.html │ │ └── manifest.json │ ├── check-state.js │ ├── favicon-144x144.png │ ├── favicon.ico │ ├── file-editor.js │ ├── index-old.html │ ├── index.html │ ├── jpg-flat.png │ ├── manifest.json │ ├── plain_text_icon.png │ ├── service-worker.js │ └── style.css ├── placeholder-app-tester │ ├── Screen Shot 2022-03-31 at 3.01.46 PM.png │ ├── Screen Shot 2022-03-31 at 3.42.52 PM.png │ ├── Screen Shot 2022-03-31 at 3.54.31 PM.png │ ├── Screen Shot 2022-03-31 at 4.36.21 PM.png │ ├── Screen Shot 2022-03-31 at 4.37.08 PM.png │ ├── Screen Shot 2022-03-31 at 4.49.11 PM.png │ ├── Screen Shot 2022-03-31 at 4.49.19 PM.png │ ├── app │ │ ├── index.html │ │ └── manifest.json │ ├── favicon.ico │ ├── heart-upside-down.ico │ ├── heart-upside-down.png │ ├── heart.png │ ├── index.html │ ├── main.js │ └── serviceworker.js ├── predictable-app-update │ ├── 128x128-alt.png │ ├── 128x128-red.png │ ├── 128x128.png │ ├── 256x256-alt.png │ ├── 256x256-red.png │ ├── 256x256.png │ ├── 32x32-alt.png │ ├── 32x32-red.png │ ├── 32x32.png │ ├── 512x512-alt.png │ ├── 512x512-red.png │ ├── 512x512.png │ ├── 64x64-alt.png │ ├── 64x64-red.png │ ├── 64x64.png │ ├── index.html │ ├── main.js │ └── serviceworker.js ├── principled-ring-yarrow │ ├── app.js │ ├── app2 │ │ ├── appindex.html │ │ └── manifest.json │ ├── check-state.js │ ├── favicon-144x144.png │ ├── favicon.ico │ ├── file-editor.js │ ├── index-old.html │ ├── index.html │ ├── manifest.json │ ├── plain_text_icon.png │ ├── service-worker.js │ └── style.css ├── private-brick-universe │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ ├── squash_unvierse.png │ └── universe2.png ├── pwa-icon-size-tester │ ├── 10x10-red.png │ ├── 10x10.png │ ├── 128x128-alt.png │ ├── 128x128-red.png │ ├── 128x128.png │ ├── 14x14-red.png │ ├── 14x14.png │ ├── 16x16-alt.png │ ├── 16x16-red.png │ ├── 16x16.png │ ├── 22x22-red.png │ ├── 22x22.png │ ├── 24x24-red.png │ ├── 24x24.png │ ├── 256x256-alt.png │ ├── 256x256-red.png │ ├── 256x256.png │ ├── 32x32-alt.png │ ├── 32x32-red.png │ ├── 32x32.png │ ├── 40x40-red.png │ ├── 40x40.png │ ├── 48x48-alt.png │ ├── 48x48-red.png │ ├── 48x48.png │ ├── 512x512-alt.png │ ├── 512x512-red.png │ ├── 512x512.png │ ├── 64x64-alt.png │ ├── 64x64-red.png │ ├── 64x64.png │ ├── 8x8-red.png │ ├── 8x8.png │ ├── 96x96-alt.png │ ├── 96x96-red.png │ ├── 96x96.png │ ├── efficient-newt-1.png │ ├── efficient-newt-2.png │ ├── index.html │ ├── main.js │ ├── package-lock.json │ └── serviceworker.js ├── relieved-tide-geese │ ├── e4cdcd8f3d76069650b67862ec8996ff.jpeg │ ├── icon.jpeg │ ├── icon144.jpg │ ├── icon144.png │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── repeated-inexpensive-elephant │ ├── common.js │ ├── demo.js │ ├── fugu-128.png │ ├── fugu-144.png │ ├── fugu-152.png │ ├── fugu-192.png │ ├── fugu-256.png │ ├── fugu-512.png │ ├── fugu-monochrome-weird.png │ ├── index.html │ ├── manifest.json │ ├── repeated-inexpensive-elephant.png │ ├── style.css │ └── sw.js ├── ruby-clover │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── ruby-clover.png │ └── serviceworker.js ├── ruddy-scarce-effect │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ └── untitled.png ├── rumbling-factual-schooner │ ├── error.png │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── rumbling-factual-schooner.png │ └── tick.png ├── saber-tabby-shield │ ├── .gcloudignore │ ├── DarthTabby.jpg │ ├── TabbySkywalker.jpg │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── public │ │ ├── DarthTabby.jpg │ │ ├── TabbySkywalker.jpg │ │ ├── index.html │ │ ├── inner │ │ ├── index.html │ │ ├── main.js │ │ ├── manifest.webmanifest │ │ └── serviceworker.js │ │ ├── main.js │ │ ├── manifest.webmanifest │ │ └── serviceworker.js ├── sassy-seasoned-carpet │ ├── .gcloudignore │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── Gemini_Generated_Image_65lit565lit565li copy.jpeg │ │ ├── Gemini_Generated_Image_65lit565lit565li copy.png │ │ ├── Gemini_Generated_Image_65lit565lit565li.jpeg │ │ └── Gemini_Generated_Image_sg2jr0sg2jr0sg2j.jpeg │ ├── style.css │ └── views │ │ └── index.html ├── silk-curse-honey │ ├── index.html │ ├── manifest.webmanifest │ └── silk-curse-honey.svg ├── silly-sepia-kingfisher │ ├── badicon.ico │ ├── index.html │ ├── manifest.json │ ├── proud nautilus.png │ ├── scope │ │ └── scoped.html │ ├── script.js │ └── style.css ├── six-great-candytuft │ ├── .well-known │ │ └── web-app-origin-association │ ├── index.html │ ├── manifest.json │ ├── package-lock.json │ └── six-great-candytuft.svg ├── skitter-chlorinated-ankylosaurus │ ├── index.html │ ├── manifest.json │ ├── package-lock.json │ ├── skitter-chlorinated-ankylosaurus.svg │ └── sw.js ├── snowy-submarine │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── ruby-clover.png │ └── serviceworker.js ├── soft-puppy │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ ├── spicon.png │ └── spup.png ├── solstice-few-vegetable │ ├── Solstice Few Vegetables (1).png │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ └── serviceworker.js ├── sprinkle-youthful-cylinder │ ├── LICENSE │ ├── illustration.svg │ ├── index.html │ ├── script.js │ └── style.css ├── star-fire-agate │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── star-fire-agate.svg │ └── sw.js ├── sulfuric-awake-astronaut │ ├── .well-known │ │ └── web-app-origin-association │ ├── LICENSE │ ├── fugu.png │ ├── illustration.svg │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── script.js │ ├── style.css │ └── yielding-large-chef.png ├── sulky-lopsided-bean │ ├── Screenshot from 2021-12-01 10-02-59.png │ ├── add-links.js │ ├── black │ │ ├── index.html │ │ └── manifest.webmanifest │ ├── brown │ │ ├── index.html │ │ └── manifest.webmanifest │ ├── index.html │ ├── launch-queue-consumer.js │ ├── package-lock.json │ ├── sulky-lopsided-bean-black.svg │ ├── sulky-lopsided-bean-brown.svg │ ├── sulky-lopsided-bean-white.svg │ ├── sw.js │ └── white │ │ ├── index.html │ │ └── manifest.webmanifest ├── sunny-cart │ ├── blue-192.png │ ├── browser │ │ ├── index.html │ │ └── service_worker.js │ ├── contrast-ratio.html │ ├── contrast.js │ ├── custom-size │ │ ├── index.html │ │ ├── manifest.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── fullscreen │ │ ├── index.html │ │ ├── manifest.json │ │ └── service_worker.js │ ├── green-48.png │ ├── index.html │ ├── minimal-ui │ │ ├── index.html │ │ ├── manifest.json │ │ ├── service_worker.js │ │ └── share-target-destination.template.html │ ├── no-manifest │ │ ├── shortcut.html │ │ └── unknown.html │ ├── poster │ │ ├── poster.html │ │ ├── poster.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── pwa │ │ ├── index.html │ │ ├── manifest.json │ │ └── service_worker.js │ ├── red-16.png │ ├── shortcuts │ │ └── index.html │ ├── standalone │ │ ├── blue-192.png │ │ ├── fast.html │ │ ├── index.html │ │ ├── manifest.json │ │ ├── medium.html │ │ ├── service_worker.js │ │ ├── share-size.html │ │ ├── share-target-destination.template.html │ │ └── slow.html │ ├── svg │ │ ├── blue-192.svg │ │ ├── green-48.svg │ │ ├── index.html │ │ ├── manifest.json │ │ ├── red-16.svg │ │ ├── service_worker.js │ │ └── yellow-32.svg │ ├── text-192.png │ ├── text-48.png │ └── yellow-32.png ├── super-concrete-tarsal │ ├── LICENSE │ ├── badging │ │ ├── index.html │ │ ├── manifest.json │ │ └── sw.js │ ├── badging2 │ │ ├── index.html │ │ ├── manifest.json │ │ └── sw.js │ ├── five │ │ ├── index.html │ │ ├── manifest.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── forestgreen.webp │ ├── four │ │ ├── index.html │ │ ├── manifest.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── index.html │ ├── large_icon.png │ ├── oneb │ │ ├── index.html │ │ ├── manifest.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── red-192.png │ ├── s1.webp │ ├── s2.webp │ ├── s4.webp │ ├── s5.webp │ ├── three │ │ ├── index.html │ │ ├── manifest.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ ├── two │ │ ├── index.html │ │ ├── manifest.json │ │ ├── share-target-destination.template.html │ │ └── sw.js │ └── web_app_shortcuts3 │ │ ├── service_worker.js │ │ ├── shortcuts.html │ │ └── shortcuts.json ├── telling-krills │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ ├── telling-krills-logo.png │ └── telling-krills.png ├── thundering-frigate │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ └── thunderingfrigate.png ├── treasure-chronometer │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ └── treasure-chronometer.png ├── uncovered-hound │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ └── uhicon.png ├── unexpected-five-scowl │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ └── unexpected-five-scowl3.jpg ├── upbeat-hydrant │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ └── upbeat-hydrant.png ├── veil-superb-gondola │ ├── index.html │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ └── veil-superb-gondola.svg ├── waiting-zigzag-windscreen │ ├── badicon.ico │ ├── index.html │ ├── manifest.json │ ├── proud nautilus.png │ ├── scope │ │ └── scoped.html │ ├── script.js │ └── style.css ├── watery-shingle │ ├── index.html │ ├── main.js │ ├── manifest.webmanifest │ ├── package-lock.json │ ├── serviceworker.js │ └── wsicon.png ├── web-usb-api-test │ ├── LICENSE │ ├── illustration.svg │ ├── index.html │ └── style.css ├── webappbundle │ ├── .gcloudignore │ ├── img.png │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── img.png │ └── views │ │ └── index.html ├── wind-veterinarian │ ├── b │ │ ├── manifest.webmanifest │ │ └── serviceworker.js │ ├── index.html │ ├── package-lock.json │ ├── public │ │ ├── a │ │ │ ├── index.html │ │ │ ├── index2.html │ │ │ ├── main.js │ │ │ ├── manifest.webmanifest │ │ │ └── serviceworker.js │ │ └── b │ │ │ ├── index.html │ │ │ ├── index2.html │ │ │ └── main.js │ ├── style.css │ ├── windvet.png │ └── windvetb.png ├── wooded-crayfish │ ├── .bash_history │ ├── index.html │ ├── inner-wooded-crayfish.png │ ├── inner │ │ ├── index.html │ │ ├── main.js │ │ ├── manifest.webmanifest │ │ └── serviceworker.js │ ├── main.js │ ├── manifest.webmanifest │ ├── outer-wooded-crayfish.png │ ├── package-lock.json │ └── serviceworker.js ├── yielding-large-chef │ ├── empty-note-taking-in-manifest │ │ ├── index.html │ │ └── manifest.webmanifest │ ├── index.html │ ├── invalid-note-taking-in-manifest │ │ ├── index.html │ │ └── manifest.webmanifest │ ├── manifest.webmanifest │ ├── new │ │ └── index.html │ ├── note-taking-in-manifest │ │ ├── create-note.html │ │ ├── index.html │ │ └── manifest.webmanifest │ ├── package-lock.json │ ├── star-fire-agate.svg │ ├── sw.js │ └── yielding-large-chef.png └── youtube-icons │ ├── 16.png │ ├── 32.png │ ├── 48.png │ ├── 512.png │ ├── common.js │ ├── demo.js │ ├── favicon_192x192.png │ ├── index.html │ ├── manifest.json │ ├── style.css │ └── sw.js ├── quictransport ├── README.md ├── client.css ├── client.html ├── client.js ├── quic_transport_server.py └── screenshot.png ├── read-an-image-file ├── index.html └── styles.css ├── report-validity ├── README.md └── index.html ├── requestvideoframecallback ├── Big_Buck_Bunny_360_10s_20MB.mp4 ├── index.html ├── script.js └── style.css ├── resizeobserver ├── README.md ├── demo.js └── index.html ├── rest-parameters-es6 ├── README.md ├── demo.js └── index.html ├── screen-orientation ├── README.md └── index.html ├── seamless-titlebar ├── close-w-15.png ├── fugu.png ├── index.html ├── manifest.webmanifest ├── max-w-15.png ├── min-w-15.png ├── restore-w-15.png ├── script.js ├── service-worker.js └── style.css ├── sec-ch-prefers-color-scheme ├── package-lock.json ├── package.json └── server.js ├── sec-ch-prefers-reduced-motion ├── nyan-cat.gif ├── nyan-cat.png ├── package-lock.json ├── package.json └── server.js ├── service-worker ├── .eslintrc ├── README.md ├── basic │ ├── README.md │ ├── demo.js │ ├── icons │ │ ├── ic_create_new_folder_black_48dp.png │ │ ├── ic_file_upload_black_48dp.png │ │ ├── ic_folder_black_48dp.png │ │ ├── ic_folder_open_black_48dp.png │ │ └── ic_folder_shared_black_48dp.png │ ├── index.html │ ├── service-worker.js │ └── styles.css ├── custom-offline-page │ ├── README.md │ ├── images │ │ ├── launcher-icon-2x.png │ │ └── launcher-icon-4x.png │ ├── index.html │ ├── index.js │ ├── manifest.json │ ├── offline.html │ └── service-worker.js ├── fallback-response │ ├── README.md │ ├── index.html │ ├── index.js │ └── service-worker.js ├── foreign-fetch │ ├── README.md │ ├── foreign-fetch-sw.js │ ├── index.html │ ├── local-client.js │ ├── package.json │ └── remote-server.js ├── immediate-control │ ├── README.md │ ├── index.html │ └── service-worker.js ├── mock-responses │ ├── README.md │ ├── index.html │ └── service-worker.js ├── multiple-handlers │ ├── README.md │ ├── index.html │ └── service-worker.js ├── offline-analytics │ ├── README.md │ ├── index.html │ └── service-worker.js ├── post-message │ ├── README.md │ ├── demo.js │ ├── index.html │ └── service-worker.js ├── prefetch-video │ ├── README.md │ ├── index.html │ ├── index.js │ ├── service-worker.js │ └── static │ │ └── poster.jpg ├── prefetch │ ├── README.md │ ├── index.html │ ├── service-worker.js │ └── static │ │ ├── not_pre_fetched.txt │ │ ├── pre_fetched.html │ │ └── pre_fetched.txt ├── read-through-caching │ ├── README.md │ ├── index.html │ └── service-worker.js ├── registration-events │ ├── README.md │ ├── index.html │ └── service-worker.js ├── registration │ ├── README.md │ ├── index.html │ └── service-worker.js ├── selective-caching │ ├── README.md │ ├── index.html │ └── service-worker.js ├── serviceworker-cache-polyfill.js ├── window-caches │ ├── README.md │ ├── demo.js │ ├── index.html │ ├── service-worker.js │ └── static │ │ ├── pre_fetched.html │ │ └── pre_fetched.txt └── windowclient-navigate │ ├── README.md │ ├── activated.html │ ├── index.html │ ├── index.js │ └── service-worker.js ├── serviceworker-static-routing ├── .gcloudignore ├── index.js ├── package-lock.json ├── package.json ├── public │ ├── cache.html │ ├── fetch-event.html │ ├── script.js │ ├── style.css │ ├── sw.js │ └── third_party.js └── src │ ├── colors.json │ ├── pages │ ├── detail.hbs │ └── index.hbs │ └── seo.json ├── spread-operator ├── README.md └── index.html ├── sqlite-wasm-opfs ├── coi-serviceworker.min.js ├── index.html ├── jswasm │ ├── sqlite3-opfs-async-proxy.js │ ├── sqlite3-worker1-promiser.js │ ├── sqlite3-worker1.js │ ├── sqlite3.js │ └── sqlite3.wasm ├── speedtest.html └── worker.js ├── stadia-controller-webhid-gamepad ├── index.html ├── script.js └── style.css ├── streams-demo ├── index.html ├── lorem-ipsum.txt ├── script.js └── style.css ├── styles └── main.css ├── subresource-integrity ├── README.md ├── correct_hash.css ├── incorrect_hash.css └── index.html ├── tabbed-application-mode ├── index.html ├── manifest.json ├── one.html ├── serviceworker.js ├── styles.css └── two.html ├── template-literals-es6 ├── README.md └── index.html ├── third-party-iframe ├── iframe.html ├── script.js └── style.css ├── todo-ai ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── dist │ └── todo-ai │ │ ├── 3rdpartylicenses.txt │ │ ├── browser │ │ ├── chunk-424KMRND.js │ │ ├── chunk-BAENFYOB.js │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main-6OC4XMVW.js │ │ ├── polyfills-FFHMD2TL.js │ │ └── styles-CXQUZ3PB.css │ │ └── prerendered-routes.json ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── nav │ │ │ ├── nav.component.css │ │ │ ├── nav.component.html │ │ │ └── nav.component.ts │ │ └── todo.ts │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── touch-action ├── README.md └── index.html ├── transformstream-demo ├── index.html ├── script.js └── style.css ├── trick-ad-click ├── cat.jpg ├── dog.jpg ├── index.html ├── script.js └── style.css ├── typedarray-methods-es6 ├── README.md ├── demo1.js ├── demo2.js └── index.html ├── urlsearchparams ├── README.md ├── index.html └── page.css ├── variable-fonts-experiments ├── .DS_Store ├── fonts │ ├── .DS_Store │ ├── AmstelvarAlpha-VF.ttf │ ├── DecovarAlpha-VF.ttf │ └── Gingham.woff ├── readme.md ├── samples │ ├── .DS_Store │ ├── SimpleSliderDemo │ │ ├── script.js │ │ ├── slider-test.html │ │ └── style.css │ ├── SliderDemoCustomProp │ │ ├── script.js │ │ ├── slider-test.html │ │ └── style.css │ ├── SliderDemoCustomPropVaribleFont │ │ ├── .DS_Store │ │ ├── Gingham.woff │ │ ├── script.js │ │ ├── slider-test.html │ │ └── style.css │ └── SliderDemoMultipleValues │ │ ├── .DS_Store │ │ ├── script.js │ │ ├── slider-test.html │ │ └── style.css ├── sketch │ └── designs.sketch ├── styles │ ├── .DS_Store │ └── style.css └── variable-fonts-viewer │ ├── .DS_Store │ ├── script.js │ └── viewer.html ├── vibration ├── .eslintrc ├── README.md ├── demo1.js ├── demo2.js ├── demo3.js ├── demo4.js └── index.html ├── virtualkeyboard ├── index.html ├── script.js ├── style.css └── util.js ├── wakelock ├── index.html ├── script.js └── style.css ├── web-animations ├── README.md └── index.html ├── web-application-manifest ├── README.md ├── index.html ├── launcher-icon-0-75x.png ├── launcher-icon-1-5x.png ├── launcher-icon-1x.png ├── launcher-icon-2x.png ├── launcher-icon-3x.png ├── launcher-icon-4x.png └── manifest.json ├── web-bluetooth ├── .eslintrc ├── README.md ├── _includes │ ├── datalist-characteristics.html │ ├── datalist-company-identifiers.html │ ├── datalist-services.html │ ├── intro.html │ ├── utils.html │ ├── value-to-device-type.html │ └── value-to-usb-vendor-name.html ├── automatic-reconnect-async-await.html ├── automatic-reconnect-async-await.js ├── automatic-reconnect.html ├── automatic-reconnect.js ├── availability-async-await.html ├── availability-async-await.js ├── availability.html ├── availability.js ├── battery-level-async-await.html ├── battery-level-async-await.js ├── battery-level.html ├── battery-level.js ├── characteristic-properties-async-await.html ├── characteristic-properties-async-await.js ├── characteristic-properties.html ├── characteristic-properties.js ├── device-disconnect-async-await.html ├── device-disconnect-async-await.js ├── device-disconnect.html ├── device-disconnect.js ├── device-info-async-await.html ├── device-info-async-await.js ├── device-info.html ├── device-info.js ├── device-information-characteristics-async-await.html ├── device-information-characteristics-async-await.js ├── device-information-characteristics.html ├── device-information-characteristics.js ├── discover-services-and-characteristics-async-await.html ├── discover-services-and-characteristics-async-await.js ├── discover-services-and-characteristics.html ├── discover-services-and-characteristics.js ├── exclusion-filters-async-await.html ├── exclusion-filters-async-await.js ├── exclusion-filters.html ├── exclusion-filters.js ├── gap-characteristics-async-await.html ├── gap-characteristics-async-await.js ├── gap-characteristics.html ├── gap-characteristics.js ├── get-characteristics-async-await.html ├── get-characteristics-async-await.js ├── get-characteristics.html ├── get-characteristics.js ├── get-descriptors-async-await.html ├── get-descriptors-async-await.js ├── get-descriptors.html ├── get-descriptors.js ├── get-devices-async-await.html ├── get-devices-async-await.js ├── get-devices.html ├── get-devices.js ├── icon.png ├── index.html ├── link-loss-async-await.html ├── link-loss-async-await.js ├── link-loss.html ├── link-loss.js ├── manufacturer-data-filter-async-await.html ├── manufacturer-data-filter-async-await.js ├── manufacturer-data-filter.html ├── manufacturer-data-filter.js ├── notifications-async-await.html ├── notifications-async-await.js ├── notifications.html ├── notifications.js ├── read-characteristic-value-changed-async-await.html ├── read-characteristic-value-changed-async-await.js ├── read-characteristic-value-changed.html ├── read-characteristic-value-changed.js ├── read-descriptors-async-await.html ├── read-descriptors-async-await.js ├── read-descriptors.html ├── read-descriptors.js ├── reset-energy-async-await.html ├── reset-energy-async-await.js ├── reset-energy.html ├── reset-energy.js ├── scan.html ├── scan.js ├── service-worker.js ├── watch-advertisements-and-connect-async-await.html ├── watch-advertisements-and-connect-async-await.js ├── watch-advertisements-and-connect.html ├── watch-advertisements-and-connect.js ├── watch-advertisements-async-await.html ├── watch-advertisements-async-await.js ├── watch-advertisements.html ├── watch-advertisements.js ├── write-descriptor-async-await.html ├── write-descriptor-async-await.js ├── write-descriptor.html └── write-descriptor.js ├── web-nfc ├── index.html └── index.js ├── web-share-in-third-party-iframe ├── index.html ├── script.js └── style.css ├── web-share ├── .gitignore ├── LICENSE ├── README.md ├── firebase.json ├── package-lock.json ├── package.json ├── rollup.config.js ├── src │ ├── css │ │ └── index.css │ ├── images │ │ ├── audio.png │ │ ├── icon.png │ │ ├── image.png │ │ ├── splash.jpg │ │ └── video.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── constants.js │ │ ├── contentIndexing.js │ │ ├── getCachedMediaMetadata.js │ │ └── service-worker.js │ ├── manifest.json │ └── svelte │ │ ├── App.svelte │ │ ├── components │ │ ├── Button.svelte │ │ ├── Media.svelte │ │ ├── MediaList.svelte │ │ ├── Navbar.svelte │ │ ├── NavbarButton.svelte │ │ └── Snackbar.svelte │ │ └── routes │ │ ├── Audio.svelte │ │ ├── Help.svelte │ │ ├── Images.svelte │ │ ├── Videos.svelte │ │ └── View.svelte └── workbox-config.js ├── web-sql-to-sqlite-wasm ├── index.html ├── mywebsqldump.js ├── script.js ├── style.css └── worker.js ├── web-vr ├── basic-input │ ├── demo │ │ ├── demo-vr.js │ │ └── demo.js │ ├── images │ │ └── press-button.jpg │ ├── index.html │ └── third_party │ │ ├── ray.min.js │ │ └── three.min.js └── hello-world │ ├── demo │ ├── demo-vr.js │ └── demo.js │ ├── index.html │ └── third_party │ └── three.min.js ├── webassembly ├── README.md ├── fib.c ├── fib.js ├── fib.wasm ├── image.html ├── image.jpg ├── image.js ├── image.wasm ├── index.html ├── version.html └── webp.c ├── webaudio-audiocontext-close ├── README.md └── index.html ├── webaudio-audionode-disconnect ├── README.md └── index.html ├── webaudio-method-chaining ├── .eslintrc ├── README.md ├── audio.mp3 ├── demo.js └── index.html ├── webaudio-offlinecontext-rendering ├── README.md └── index.html ├── webaudio-suspend-resume ├── README.md └── index.html ├── websocketstream-demo ├── package-lock.json ├── package.json ├── public │ ├── index.html │ ├── script.js │ ├── socket.io.esm.min.js │ └── style.css └── server.mjs ├── webtransport ├── README.md ├── client.css ├── client.html ├── client.js ├── screenshot.png └── webtransport_server.py ├── window-controls-overlay ├── index.html ├── manifest.webmanifest ├── script.js ├── style.css └── sw.js └── window-management ├── elmer.jpg ├── iframe.html ├── index.html ├── script.js └── style.css /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/.travis.yml -------------------------------------------------------------------------------- /.well-known/web-app-origin-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/.well-known/web-app-origin-association -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/README.md -------------------------------------------------------------------------------- /SAMPLE_STARTING_POINT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/SAMPLE_STARTING_POINT/README.md -------------------------------------------------------------------------------- /SAMPLE_STARTING_POINT/demo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SAMPLE_STARTING_POINT/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/SAMPLE_STARTING_POINT/index.html -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/css_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/_includes/css_snippet.html -------------------------------------------------------------------------------- /_includes/html_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/_includes/html_snippet.html -------------------------------------------------------------------------------- /_includes/js_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/_includes/js_snippet.html -------------------------------------------------------------------------------- /_includes/output_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/_includes/output_helper.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /allow-popups-to-escape-sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/allow-popups-to-escape-sandbox/README.md -------------------------------------------------------------------------------- /allow-popups-to-escape-sandbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/allow-popups-to-escape-sandbox/index.html -------------------------------------------------------------------------------- /allow-popups-to-escape-sandbox/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/allow-popups-to-escape-sandbox/popup.html -------------------------------------------------------------------------------- /app-install-banner/basic-banner/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/app-install-banner/basic-banner/readme.md -------------------------------------------------------------------------------- /app-install-banner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/app-install-banner/index.html -------------------------------------------------------------------------------- /array-includes-es7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-includes-es7/README.md -------------------------------------------------------------------------------- /array-includes-es7/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-includes-es7/demo.js -------------------------------------------------------------------------------- /array-includes-es7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-includes-es7/index.html -------------------------------------------------------------------------------- /array-methods-es6/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/.eslintrc -------------------------------------------------------------------------------- /array-methods-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/README.md -------------------------------------------------------------------------------- /array-methods-es6/demo1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/demo1.js -------------------------------------------------------------------------------- /array-methods-es6/demo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/demo2.js -------------------------------------------------------------------------------- /array-methods-es6/demo3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/demo3.js -------------------------------------------------------------------------------- /array-methods-es6/demo4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/demo4.js -------------------------------------------------------------------------------- /array-methods-es6/demo5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/demo5.js -------------------------------------------------------------------------------- /array-methods-es6/demo6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/demo6.js -------------------------------------------------------------------------------- /array-methods-es6/demo7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/demo7.js -------------------------------------------------------------------------------- /array-methods-es6/demo8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/demo8.js -------------------------------------------------------------------------------- /array-methods-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/array-methods-es6/index.html -------------------------------------------------------------------------------- /arrows-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/arrows-es6/README.md -------------------------------------------------------------------------------- /arrows-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/arrows-es6/demo.js -------------------------------------------------------------------------------- /arrows-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/arrows-es6/index.html -------------------------------------------------------------------------------- /async-clipboard-image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard-image/index.html -------------------------------------------------------------------------------- /async-clipboard-image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard-image/index.js -------------------------------------------------------------------------------- /async-clipboard-image/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard-image/style.css -------------------------------------------------------------------------------- /async-clipboard-text/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard-text/index.html -------------------------------------------------------------------------------- /async-clipboard-text/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard-text/script.js -------------------------------------------------------------------------------- /async-clipboard-text/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard-text/style.css -------------------------------------------------------------------------------- /async-clipboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard/README.md -------------------------------------------------------------------------------- /async-clipboard/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard/demo.css -------------------------------------------------------------------------------- /async-clipboard/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard/demo.js -------------------------------------------------------------------------------- /async-clipboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/async-clipboard/index.html -------------------------------------------------------------------------------- /audio-splitter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/audio-splitter/index.html -------------------------------------------------------------------------------- /audio/techno.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/audio/techno.wav -------------------------------------------------------------------------------- /auto-picture-in-picture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/auto-picture-in-picture/index.html -------------------------------------------------------------------------------- /auto-picture-in-picture/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/auto-picture-in-picture/index.js -------------------------------------------------------------------------------- /auto-picture-in-picture/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/auto-picture-in-picture/manifest.json -------------------------------------------------------------------------------- /auto-picture-in-picture/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/auto-picture-in-picture/service-worker.js -------------------------------------------------------------------------------- /autocapitalize/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/autocapitalize/index.html -------------------------------------------------------------------------------- /autocapitalize/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/autocapitalize/readme.md -------------------------------------------------------------------------------- /badging-api/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/badging-api/common.js -------------------------------------------------------------------------------- /badging-api/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/badging-api/demo.js -------------------------------------------------------------------------------- /badging-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/badging-api/index.html -------------------------------------------------------------------------------- /badging-api/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/badging-api/manifest.json -------------------------------------------------------------------------------- /badging-api/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/badging-api/style.css -------------------------------------------------------------------------------- /badging-api/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/badging-api/sw.js -------------------------------------------------------------------------------- /battery-status/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/battery-status/README.md -------------------------------------------------------------------------------- /battery-status/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/battery-status/demo.js -------------------------------------------------------------------------------- /battery-status/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/battery-status/index.html -------------------------------------------------------------------------------- /beacon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/beacon/README.md -------------------------------------------------------------------------------- /beacon/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/beacon/demo.js -------------------------------------------------------------------------------- /beacon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/beacon/index.html -------------------------------------------------------------------------------- /built-in-ai-rocks/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/.prettierrc -------------------------------------------------------------------------------- /built-in-ai-rocks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/index.html -------------------------------------------------------------------------------- /built-in-ai-rocks/index_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/index_basic.html -------------------------------------------------------------------------------- /built-in-ai-rocks/index_jsonschema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/index_jsonschema.html -------------------------------------------------------------------------------- /built-in-ai-rocks/index_multimodal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/index_multimodal.html -------------------------------------------------------------------------------- /built-in-ai-rocks/script_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/script_basic.js -------------------------------------------------------------------------------- /built-in-ai-rocks/script_jsonschema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/script_jsonschema.js -------------------------------------------------------------------------------- /built-in-ai-rocks/script_multimodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/script_multimodal.js -------------------------------------------------------------------------------- /built-in-ai-rocks/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/style.css -------------------------------------------------------------------------------- /built-in-ai-rocks/thomas-steiner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/built-in-ai-rocks/thomas-steiner.jpg -------------------------------------------------------------------------------- /classes-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/classes-es6/README.md -------------------------------------------------------------------------------- /classes-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/classes-es6/demo.js -------------------------------------------------------------------------------- /classes-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/classes-es6/index.html -------------------------------------------------------------------------------- /collections-iterators-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/collections-iterators-es6/README.md -------------------------------------------------------------------------------- /collections-iterators-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/collections-iterators-es6/demo.js -------------------------------------------------------------------------------- /collections-iterators-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/collections-iterators-es6/index.html -------------------------------------------------------------------------------- /compressionstream-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/compressionstream-demo/index.html -------------------------------------------------------------------------------- /compressionstream-demo/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/compressionstream-demo/lorem.txt -------------------------------------------------------------------------------- /compressionstream-demo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/compressionstream-demo/script.js -------------------------------------------------------------------------------- /compressionstream-demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/compressionstream-demo/style.css -------------------------------------------------------------------------------- /compute-pressure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/compute-pressure/README.md -------------------------------------------------------------------------------- /compute-pressure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/compute-pressure/index.html -------------------------------------------------------------------------------- /compute-pressure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/compute-pressure/index.js -------------------------------------------------------------------------------- /compute-pressure/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/compute-pressure/normalize.css -------------------------------------------------------------------------------- /computed-properties-es6/README.md: -------------------------------------------------------------------------------- 1 | ES6 Computed Property Names 2 | === 3 | -------------------------------------------------------------------------------- /computed-properties-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/computed-properties-es6/index.html -------------------------------------------------------------------------------- /contact-picker/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/contact-picker/demo.js -------------------------------------------------------------------------------- /contact-picker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/contact-picker/index.html -------------------------------------------------------------------------------- /contact-picker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/contact-picker/style.css -------------------------------------------------------------------------------- /cookie-prefixes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cookie-prefixes/README.md -------------------------------------------------------------------------------- /cookie-prefixes/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cookie-prefixes/demo.js -------------------------------------------------------------------------------- /cookie-prefixes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cookie-prefixes/index.html -------------------------------------------------------------------------------- /cos-demo/huggingface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cos-demo/huggingface.html -------------------------------------------------------------------------------- /cos-demo/huggingface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cos-demo/huggingface.js -------------------------------------------------------------------------------- /cos-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cos-demo/index.html -------------------------------------------------------------------------------- /cos-demo/sentiment-analysis-model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cos-demo/sentiment-analysis-model.bin -------------------------------------------------------------------------------- /cos-demo/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cos-demo/util.js -------------------------------------------------------------------------------- /csp-upgrade-insecure-requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/csp-upgrade-insecure-requests/README.md -------------------------------------------------------------------------------- /csp-upgrade-insecure-requests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/csp-upgrade-insecure-requests/index.html -------------------------------------------------------------------------------- /css-alpha-channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-alpha-channel/README.md -------------------------------------------------------------------------------- /css-alpha-channel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-alpha-channel/index.html -------------------------------------------------------------------------------- /css-attribute-case-sensitivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-attribute-case-sensitivity/README.md -------------------------------------------------------------------------------- /css-attribute-case-sensitivity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-attribute-case-sensitivity/index.html -------------------------------------------------------------------------------- /css-custom-properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-custom-properties/README.md -------------------------------------------------------------------------------- /css-custom-properties/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-custom-properties/demo.js -------------------------------------------------------------------------------- /css-custom-properties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-custom-properties/index.html -------------------------------------------------------------------------------- /css-escape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-escape/README.md -------------------------------------------------------------------------------- /css-escape/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-escape/demo.js -------------------------------------------------------------------------------- /css-escape/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-escape/index.html -------------------------------------------------------------------------------- /css-flexbox-abspos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-flexbox-abspos/README.md -------------------------------------------------------------------------------- /css-flexbox-abspos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-flexbox-abspos/index.html -------------------------------------------------------------------------------- /css-hyphens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-hyphens/README.md -------------------------------------------------------------------------------- /css-hyphens/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-hyphens/index.html -------------------------------------------------------------------------------- /css-intrinsic-sizing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-intrinsic-sizing/README.md -------------------------------------------------------------------------------- /css-intrinsic-sizing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-intrinsic-sizing/index.html -------------------------------------------------------------------------------- /css-motion-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-motion-path/README.md -------------------------------------------------------------------------------- /css-motion-path/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-motion-path/demo.js -------------------------------------------------------------------------------- /css-motion-path/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-motion-path/index.html -------------------------------------------------------------------------------- /css-opacity-force-flattening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-opacity-force-flattening/README.md -------------------------------------------------------------------------------- /css-opacity-force-flattening/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-opacity-force-flattening/index.html -------------------------------------------------------------------------------- /css-shapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-shapes/README.md -------------------------------------------------------------------------------- /css-shapes/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-shapes/cat.png -------------------------------------------------------------------------------- /css-shapes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/css-shapes/index.html -------------------------------------------------------------------------------- /custom-drag-and-drop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/custom-drag-and-drop/index.html -------------------------------------------------------------------------------- /custom-drag-and-drop/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/custom-drag-and-drop/styles.css -------------------------------------------------------------------------------- /cut-and-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cut-and-copy/README.md -------------------------------------------------------------------------------- /cut-and-copy/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cut-and-copy/demo.js -------------------------------------------------------------------------------- /cut-and-copy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/cut-and-copy/index.html -------------------------------------------------------------------------------- /dark-mode-class-toggle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/dark-mode-class-toggle/index.html -------------------------------------------------------------------------------- /dark-mode-class-toggle/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/dark-mode-class-toggle/script.js -------------------------------------------------------------------------------- /dark-mode-class-toggle/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/dark-mode-class-toggle/style.css -------------------------------------------------------------------------------- /decorators-es7/read-write/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/decorators-es7/read-write/README.md -------------------------------------------------------------------------------- /decorators-es7/read-write/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/decorators-es7/read-write/gulpfile.js -------------------------------------------------------------------------------- /decorators-es7/read-write/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/decorators-es7/read-write/package.json -------------------------------------------------------------------------------- /decorators-es7/read-write/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/decorators-es7/read-write/src/favicon.ico -------------------------------------------------------------------------------- /decorators-es7/read-write/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/decorators-es7/read-write/src/index.html -------------------------------------------------------------------------------- /default-parameters-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/default-parameters-es6/README.md -------------------------------------------------------------------------------- /default-parameters-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/default-parameters-es6/demo.js -------------------------------------------------------------------------------- /default-parameters-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/default-parameters-es6/index.html -------------------------------------------------------------------------------- /designcember-calculator/als.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/designcember-calculator/als.js -------------------------------------------------------------------------------- /designcember-calculator/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/designcember-calculator/calculator.js -------------------------------------------------------------------------------- /designcember-calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/designcember-calculator/index.html -------------------------------------------------------------------------------- /designcember-calculator/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/designcember-calculator/manifest.json -------------------------------------------------------------------------------- /designcember-calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/designcember-calculator/script.js -------------------------------------------------------------------------------- /designcember-calculator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/designcember-calculator/style.css -------------------------------------------------------------------------------- /designcember-calculator/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/designcember-calculator/sw.js -------------------------------------------------------------------------------- /designcember-calculator/wco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/designcember-calculator/wco.js -------------------------------------------------------------------------------- /destructuring-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/destructuring-es6/README.md -------------------------------------------------------------------------------- /destructuring-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/destructuring-es6/demo.js -------------------------------------------------------------------------------- /destructuring-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/destructuring-es6/index.html -------------------------------------------------------------------------------- /dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/dialog/README.md -------------------------------------------------------------------------------- /dialog/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/dialog/demo.js -------------------------------------------------------------------------------- /dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/dialog/index.html -------------------------------------------------------------------------------- /downloading-built-in-models/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/downloading-built-in-models/.prettierrc -------------------------------------------------------------------------------- /downloading-built-in-models/gemini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/downloading-built-in-models/gemini.html -------------------------------------------------------------------------------- /downloading-built-in-models/gemini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/downloading-built-in-models/gemini.js -------------------------------------------------------------------------------- /downloading-built-in-models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/downloading-built-in-models/index.html -------------------------------------------------------------------------------- /downloading-built-in-models/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/downloading-built-in-models/main.js -------------------------------------------------------------------------------- /downloading-built-in-models/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IDX.agenticWorkspace": true 3 | } 4 | -------------------------------------------------------------------------------- /downloading-built-in-models/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/downloading-built-in-models/style.css -------------------------------------------------------------------------------- /encoding-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/encoding-api/README.md -------------------------------------------------------------------------------- /encoding-api/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/encoding-api/demo.js -------------------------------------------------------------------------------- /encoding-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/encoding-api/index.html -------------------------------------------------------------------------------- /encoding-api/macintosh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/encoding-api/macintosh.bin -------------------------------------------------------------------------------- /encoding-api/utf16le.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/encoding-api/utf16le.bin -------------------------------------------------------------------------------- /encoding-api/utf8.bin: -------------------------------------------------------------------------------- 1 | Hello! I'm a Unicode string encoded as UTF-8! ☺ -------------------------------------------------------------------------------- /event-istrusted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/event-istrusted/README.md -------------------------------------------------------------------------------- /event-istrusted/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/event-istrusted/demo.js -------------------------------------------------------------------------------- /event-istrusted/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/event-istrusted/index.html -------------------------------------------------------------------------------- /event-timestamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/event-timestamp/README.md -------------------------------------------------------------------------------- /event-timestamp/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/event-timestamp/demo.js -------------------------------------------------------------------------------- /event-timestamp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/event-timestamp/index.html -------------------------------------------------------------------------------- /examplescript-to-wasm/binaryen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/examplescript-to-wasm/binaryen.js -------------------------------------------------------------------------------- /examplescript-to-wasm/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/examplescript-to-wasm/compiler.js -------------------------------------------------------------------------------- /examplescript-to-wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/examplescript-to-wasm/index.html -------------------------------------------------------------------------------- /examplescript-to-wasm/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/examplescript-to-wasm/parser.js -------------------------------------------------------------------------------- /examplescript-to-wasm/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/examplescript-to-wasm/script.js -------------------------------------------------------------------------------- /examplescript-to-wasm/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/examplescript-to-wasm/style.css -------------------------------------------------------------------------------- /extended-object-literals-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/extended-object-literals-es6/README.md -------------------------------------------------------------------------------- /extended-object-literals-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/extended-object-literals-es6/demo.js -------------------------------------------------------------------------------- /extended-object-literals-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/extended-object-literals-es6/index.html -------------------------------------------------------------------------------- /extended-unicode-escapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/extended-unicode-escapes/README.md -------------------------------------------------------------------------------- /extended-unicode-escapes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/extended-unicode-escapes/index.html -------------------------------------------------------------------------------- /factorial-wasm-ad-hoc-worker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/factorial-wasm-ad-hoc-worker/index.html -------------------------------------------------------------------------------- /factorial-wasm-ad-hoc-worker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/factorial-wasm-ad-hoc-worker/script.js -------------------------------------------------------------------------------- /factorial-wasm-ad-hoc-worker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/factorial-wasm-ad-hoc-worker/style.css -------------------------------------------------------------------------------- /factorial-wasm-permanent-worker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/factorial-wasm-permanent-worker/script.js -------------------------------------------------------------------------------- /factorial-wasm-permanent-worker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/factorial-wasm-permanent-worker/style.css -------------------------------------------------------------------------------- /fetch-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/README.md -------------------------------------------------------------------------------- /fetch-api/fetch-html-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-html-demo.js -------------------------------------------------------------------------------- /fetch-api/fetch-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-html.html -------------------------------------------------------------------------------- /fetch-api/fetch-json-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-json-demo.js -------------------------------------------------------------------------------- /fetch-api/fetch-json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-json.html -------------------------------------------------------------------------------- /fetch-api/fetch-post-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-post-demo.js -------------------------------------------------------------------------------- /fetch-api/fetch-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-post.html -------------------------------------------------------------------------------- /fetch-api/fetch-reddit-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-reddit-demo.js -------------------------------------------------------------------------------- /fetch-api/fetch-reddit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-reddit.html -------------------------------------------------------------------------------- /fetch-api/fetch-referrer-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-referrer-policy.html -------------------------------------------------------------------------------- /fetch-api/fetch-referrer-policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-referrer-policy.js -------------------------------------------------------------------------------- /fetch-api/fetch-response-metadata-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-response-metadata-demo.js -------------------------------------------------------------------------------- /fetch-api/fetch-response-metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-response-metadata.html -------------------------------------------------------------------------------- /fetch-api/fetch-response-stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/fetch-response-stream.html -------------------------------------------------------------------------------- /fetch-api/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/users.html -------------------------------------------------------------------------------- /fetch-api/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fetch-api/users.json -------------------------------------------------------------------------------- /file-constructor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/file-constructor/README.md -------------------------------------------------------------------------------- /file-constructor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/file-constructor/index.html -------------------------------------------------------------------------------- /file-system-observer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/file-system-observer/index.html -------------------------------------------------------------------------------- /file-system-observer/observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/file-system-observer/observer.js -------------------------------------------------------------------------------- /file-system-observer/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/file-system-observer/random.js -------------------------------------------------------------------------------- /file-system-observer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/file-system-observer/style.css -------------------------------------------------------------------------------- /focus-navigation-start-point/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/focus-navigation-start-point/README.md -------------------------------------------------------------------------------- /focus-navigation-start-point/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/focus-navigation-start-point/index.html -------------------------------------------------------------------------------- /focus-navigation-start-point/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/focus-navigation-start-point/styles.css -------------------------------------------------------------------------------- /font-face-set/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/font-face-set/.eslintrc -------------------------------------------------------------------------------- /font-face-set/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/font-face-set/README.md -------------------------------------------------------------------------------- /font-face-set/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/font-face-set/demo.js -------------------------------------------------------------------------------- /font-face-set/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/font-face-set/index.html -------------------------------------------------------------------------------- /formdata-methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/formdata-methods/README.md -------------------------------------------------------------------------------- /formdata-methods/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/formdata-methods/demo.js -------------------------------------------------------------------------------- /formdata-methods/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/formdata-methods/index.html -------------------------------------------------------------------------------- /fullscreen-keyboard-lock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fullscreen-keyboard-lock/index.html -------------------------------------------------------------------------------- /fullscreen-keyboard-lock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fullscreen-keyboard-lock/script.js -------------------------------------------------------------------------------- /fullscreen-keyboard-lock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/fullscreen-keyboard-lock/style.css -------------------------------------------------------------------------------- /gamepad-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/gamepad-demo/index.html -------------------------------------------------------------------------------- /gamepad-demo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/gamepad-demo/script.js -------------------------------------------------------------------------------- /gamepad-demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/gamepad-demo/style.css -------------------------------------------------------------------------------- /generators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/generators/README.md -------------------------------------------------------------------------------- /generators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/generators/index.html -------------------------------------------------------------------------------- /glitch-migration/canvas2d/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/canvas2d/demo/index.html -------------------------------------------------------------------------------- /glitch-migration/canvas2d/demo/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/canvas2d/demo/pattern.js -------------------------------------------------------------------------------- /glitch-migration/canvas2d/demo/retro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/canvas2d/demo/retro.html -------------------------------------------------------------------------------- /glitch-migration/keyboard-lock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/keyboard-lock/index.html -------------------------------------------------------------------------------- /glitch-migration/keyboard-lock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/keyboard-lock/script.js -------------------------------------------------------------------------------- /glitch-migration/keyboard-lock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/keyboard-lock/style.css -------------------------------------------------------------------------------- /glitch-migration/svg-copy-paste/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/svg-copy-paste/script.js -------------------------------------------------------------------------------- /glitch-migration/svg-copy-paste/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/svg-copy-paste/style.css -------------------------------------------------------------------------------- /glitch-migration/url-parts/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/url-parts/css/main.css -------------------------------------------------------------------------------- /glitch-migration/url-parts/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/url-parts/favicon.ico -------------------------------------------------------------------------------- /glitch-migration/url-parts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/url-parts/index.html -------------------------------------------------------------------------------- /glitch-migration/url-parts/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/url-parts/js/main.js -------------------------------------------------------------------------------- /glitch-migration/url-parts/js/psl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/url-parts/js/psl.js -------------------------------------------------------------------------------- /glitch-migration/url-parts/js/tld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/url-parts/js/tld.js -------------------------------------------------------------------------------- /glitch-migration/url-parts/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/url-parts/manifest.json -------------------------------------------------------------------------------- /glitch-migration/url-parts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/glitch-migration/url-parts/package.json -------------------------------------------------------------------------------- /handwriting-recognition/index-ClEgWSF6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/handwriting-recognition/index-ClEgWSF6.js -------------------------------------------------------------------------------- /handwriting-recognition/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/handwriting-recognition/index.html -------------------------------------------------------------------------------- /hdcp-detection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/hdcp-detection/index.html -------------------------------------------------------------------------------- /hdcp-detection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/hdcp-detection/index.js -------------------------------------------------------------------------------- /highlighttext-systemcolor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/highlighttext-systemcolor/index.html -------------------------------------------------------------------------------- /highlighttext-systemcolor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/highlighttext-systemcolor/style.css -------------------------------------------------------------------------------- /idb-getall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/idb-getall/README.md -------------------------------------------------------------------------------- /idb-getall/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/idb-getall/demo.js -------------------------------------------------------------------------------- /idb-getall/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/idb-getall/index.html -------------------------------------------------------------------------------- /idle-detection/dark_mode.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/idle-detection/dark_mode.mjs -------------------------------------------------------------------------------- /idle-detection/idle_detection.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/idle-detection/idle_detection.mjs -------------------------------------------------------------------------------- /idle-detection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/idle-detection/index.html -------------------------------------------------------------------------------- /idle-detection/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/idle-detection/manifest.webmanifest -------------------------------------------------------------------------------- /idle-detection/script.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/idle-detection/script.mjs -------------------------------------------------------------------------------- /idle-detection/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/idle-detection/style.css -------------------------------------------------------------------------------- /image-capture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/README.md -------------------------------------------------------------------------------- /image-capture/background-blur.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/background-blur.css -------------------------------------------------------------------------------- /image-capture/background-blur.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/background-blur.html -------------------------------------------------------------------------------- /image-capture/background-blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/background-blur.js -------------------------------------------------------------------------------- /image-capture/grab-frame-take-photo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/grab-frame-take-photo.css -------------------------------------------------------------------------------- /image-capture/grab-frame-take-photo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/grab-frame-take-photo.html -------------------------------------------------------------------------------- /image-capture/grab-frame-take-photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/grab-frame-take-photo.js -------------------------------------------------------------------------------- /image-capture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/index.html -------------------------------------------------------------------------------- /image-capture/photo-resolution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/photo-resolution.css -------------------------------------------------------------------------------- /image-capture/photo-resolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/photo-resolution.html -------------------------------------------------------------------------------- /image-capture/photo-resolution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/photo-resolution.js -------------------------------------------------------------------------------- /image-capture/update-camera-zoom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/update-camera-zoom.css -------------------------------------------------------------------------------- /image-capture/update-camera-zoom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/update-camera-zoom.html -------------------------------------------------------------------------------- /image-capture/update-camera-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-capture/update-camera-zoom.js -------------------------------------------------------------------------------- /image-rendering-pixelated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-rendering-pixelated/README.md -------------------------------------------------------------------------------- /image-rendering-pixelated/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/image-rendering-pixelated/index.html -------------------------------------------------------------------------------- /images/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/images/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/touch/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/images/touch/icon-128x128.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/index.html -------------------------------------------------------------------------------- /indexeddb-observers/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/indexeddb-observers/.eslintrc -------------------------------------------------------------------------------- /indexeddb-observers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/indexeddb-observers/README.md -------------------------------------------------------------------------------- /indexeddb-observers/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/indexeddb-observers/demo.js -------------------------------------------------------------------------------- /indexeddb-observers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/indexeddb-observers/index.html -------------------------------------------------------------------------------- /input-device-capabilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/input-device-capabilities/README.md -------------------------------------------------------------------------------- /input-device-capabilities/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/input-device-capabilities/demo.js -------------------------------------------------------------------------------- /input-device-capabilities/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/input-device-capabilities/index.html -------------------------------------------------------------------------------- /input-type-file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/input-type-file/index.html -------------------------------------------------------------------------------- /input-type-file/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/input-type-file/styles.css -------------------------------------------------------------------------------- /intersectionobserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/intersectionobserver/README.md -------------------------------------------------------------------------------- /intersectionobserver/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/intersectionobserver/demo.js -------------------------------------------------------------------------------- /intersectionobserver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/intersectionobserver/index.html -------------------------------------------------------------------------------- /intrinsic-size/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/intrinsic-size/README.md -------------------------------------------------------------------------------- /intrinsic-size/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/intrinsic-size/cat.jpg -------------------------------------------------------------------------------- /intrinsic-size/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/intrinsic-size/index.html -------------------------------------------------------------------------------- /intrinsic-size/sized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/intrinsic-size/sized.html -------------------------------------------------------------------------------- /intrinsic-size/unsized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/intrinsic-size/unsized.html -------------------------------------------------------------------------------- /intrinsic-size/width_only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/intrinsic-size/width_only.html -------------------------------------------------------------------------------- /keyboardevent-code-attribute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/keyboardevent-code-attribute/README.md -------------------------------------------------------------------------------- /keyboardevent-code-attribute/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/keyboardevent-code-attribute/demo.js -------------------------------------------------------------------------------- /keyboardevent-code-attribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/keyboardevent-code-attribute/index.html -------------------------------------------------------------------------------- /keyboardevent-key-attribute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/keyboardevent-key-attribute/README.md -------------------------------------------------------------------------------- /keyboardevent-key-attribute/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/keyboardevent-key-attribute/demo.js -------------------------------------------------------------------------------- /keyboardevent-key-attribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/keyboardevent-key-attribute/index.html -------------------------------------------------------------------------------- /kotlin-wasm-hello-world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/kotlin-wasm-hello-world/index.html -------------------------------------------------------------------------------- /lexical-declarations-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/lexical-declarations-es6/README.md -------------------------------------------------------------------------------- /lexical-declarations-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/lexical-declarations-es6/index.html -------------------------------------------------------------------------------- /local-font-access/font-select.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/local-font-access/font-select.mjs -------------------------------------------------------------------------------- /local-font-access/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/local-font-access/index.html -------------------------------------------------------------------------------- /local-font-access/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/local-font-access/script.js -------------------------------------------------------------------------------- /local-font-access/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/local-font-access/style.css -------------------------------------------------------------------------------- /media-capabilities/decoding-info-eme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-capabilities/decoding-info-eme.html -------------------------------------------------------------------------------- /media-capabilities/decoding-info-eme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-capabilities/decoding-info-eme.js -------------------------------------------------------------------------------- /media-capabilities/decoding-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-capabilities/decoding-info.html -------------------------------------------------------------------------------- /media-capabilities/decoding-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-capabilities/decoding-info.js -------------------------------------------------------------------------------- /media-hover-pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-hover-pointer/README.md -------------------------------------------------------------------------------- /media-hover-pointer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-hover-pointer/index.html -------------------------------------------------------------------------------- /media-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/README.md -------------------------------------------------------------------------------- /media-session/audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/audio.html -------------------------------------------------------------------------------- /media-session/audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/audio.js -------------------------------------------------------------------------------- /media-session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/index.html -------------------------------------------------------------------------------- /media-session/slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/slides.html -------------------------------------------------------------------------------- /media-session/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/slides.js -------------------------------------------------------------------------------- /media-session/video-conferencing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/video-conferencing.html -------------------------------------------------------------------------------- /media-session/video-conferencing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/video-conferencing.js -------------------------------------------------------------------------------- /media-session/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/video.html -------------------------------------------------------------------------------- /media-session/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media-session/video.js -------------------------------------------------------------------------------- /media/color-gamut-media-query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/color-gamut-media-query.html -------------------------------------------------------------------------------- /media/color-gamut-media-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/color-gamut-media-query.js -------------------------------------------------------------------------------- /media/controlslist-noplaybackrate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/controlslist-noplaybackrate.html -------------------------------------------------------------------------------- /media/controlslist-noplaybackrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/controlslist-noplaybackrate.js -------------------------------------------------------------------------------- /media/controlslist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/controlslist.html -------------------------------------------------------------------------------- /media/error-message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/error-message.html -------------------------------------------------------------------------------- /media/error-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/error-message.js -------------------------------------------------------------------------------- /media/flac-in-mp4-for-mse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/flac-in-mp4-for-mse.html -------------------------------------------------------------------------------- /media/flac-in-mp4-for-mse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/flac-in-mp4-for-mse.js -------------------------------------------------------------------------------- /media/key-session-closed-reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/key-session-closed-reason.html -------------------------------------------------------------------------------- /media/key-session-closed-reason.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/key-session-closed-reason.js -------------------------------------------------------------------------------- /media/live-seekable-range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/live-seekable-range.html -------------------------------------------------------------------------------- /media/live-seekable-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/live-seekable-range.js -------------------------------------------------------------------------------- /media/no_streams.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/no_streams.webm -------------------------------------------------------------------------------- /media/opus-in-mp4-for-mse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/opus-in-mp4-for-mse.html -------------------------------------------------------------------------------- /media/opus-in-mp4-for-mse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/opus-in-mp4-for-mse.js -------------------------------------------------------------------------------- /media/playback-rate-exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/playback-rate-exception.html -------------------------------------------------------------------------------- /media/playback-rate-exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/playback-rate-exception.js -------------------------------------------------------------------------------- /media/preload-metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/preload-metadata.html -------------------------------------------------------------------------------- /media/preload-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/preload-metadata.js -------------------------------------------------------------------------------- /media/sourcebuffer-changetype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/sourcebuffer-changetype.html -------------------------------------------------------------------------------- /media/sourcebuffer-changetype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/sourcebuffer-changetype.js -------------------------------------------------------------------------------- /media/vp9-codec-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/vp9-codec-string.html -------------------------------------------------------------------------------- /media/vp9-codec-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/media/vp9-codec-string.js -------------------------------------------------------------------------------- /mediapipe-llm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mediapipe-llm/LICENSE -------------------------------------------------------------------------------- /mediapipe-llm/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mediapipe-llm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mediapipe-llm/index.html -------------------------------------------------------------------------------- /mediapipe-llm/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mediapipe-llm/script.js -------------------------------------------------------------------------------- /mediapipe-llm/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mediapipe-llm/style.css -------------------------------------------------------------------------------- /mediastreamtrack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mediastreamtrack/index.html -------------------------------------------------------------------------------- /mediastreamtrack/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mediastreamtrack/script.js -------------------------------------------------------------------------------- /mediastreamtrack/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mediastreamtrack/style.css -------------------------------------------------------------------------------- /mkbitmap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mkbitmap/index.html -------------------------------------------------------------------------------- /mkbitmap/mkbitmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mkbitmap/mkbitmap.js -------------------------------------------------------------------------------- /mkbitmap/mkbitmap.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mkbitmap/mkbitmap.wasm -------------------------------------------------------------------------------- /mkbitmap/pbmimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mkbitmap/pbmimage.js -------------------------------------------------------------------------------- /mkbitmap/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mkbitmap/script.js -------------------------------------------------------------------------------- /mkbitmap/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mkbitmap/style.css -------------------------------------------------------------------------------- /mouseevent-get-modifier-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mouseevent-get-modifier-state/README.md -------------------------------------------------------------------------------- /mouseevent-get-modifier-state/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mouseevent-get-modifier-state/demo.js -------------------------------------------------------------------------------- /mouseevent-get-modifier-state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/mouseevent-get-modifier-state/index.html -------------------------------------------------------------------------------- /multi-column-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/multi-column-css/README.md -------------------------------------------------------------------------------- /multi-column-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/multi-column-css/index.html -------------------------------------------------------------------------------- /muted-autoplay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/muted-autoplay/README.md -------------------------------------------------------------------------------- /muted-autoplay/chrome-clip.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/muted-autoplay/chrome-clip.mp4 -------------------------------------------------------------------------------- /muted-autoplay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/muted-autoplay/index.html -------------------------------------------------------------------------------- /muted-autoplay/styles.css: -------------------------------------------------------------------------------- 1 | video { 2 | max-width: 70%; 3 | } 4 | -------------------------------------------------------------------------------- /network-information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/network-information/README.md -------------------------------------------------------------------------------- /network-information/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/network-information/demo.js -------------------------------------------------------------------------------- /network-information/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/network-information/index.html -------------------------------------------------------------------------------- /new-target-es6/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/new-target-es6/.eslintrc -------------------------------------------------------------------------------- /new-target-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/new-target-es6/README.md -------------------------------------------------------------------------------- /new-target-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/new-target-es6/demo.js -------------------------------------------------------------------------------- /new-target-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/new-target-es6/index.html -------------------------------------------------------------------------------- /notifications/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/notifications/.eslintrc -------------------------------------------------------------------------------- /notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/notifications/README.md -------------------------------------------------------------------------------- /notifications/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/notifications/index.html -------------------------------------------------------------------------------- /notifications/requireInteraction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/notifications/requireInteraction.html -------------------------------------------------------------------------------- /notifications/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/notifications/sw.js -------------------------------------------------------------------------------- /notifications/vibrate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/notifications/vibrate.html -------------------------------------------------------------------------------- /object-assign-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/object-assign-es6/README.md -------------------------------------------------------------------------------- /object-assign-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/object-assign-es6/demo.js -------------------------------------------------------------------------------- /object-assign-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/object-assign-es6/index.html -------------------------------------------------------------------------------- /offline-fallback-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/offline-fallback-demo/index.html -------------------------------------------------------------------------------- /offline-fallback-demo/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/offline-fallback-demo/index2.html -------------------------------------------------------------------------------- /offline-fallback-demo/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/offline-fallback-demo/offline.html -------------------------------------------------------------------------------- /offline-fallback-demo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/offline-fallback-demo/script.js -------------------------------------------------------------------------------- /offline-fallback-demo/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/offline-fallback-demo/service-worker.js -------------------------------------------------------------------------------- /offline-fallback-demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/offline-fallback-demo/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/package.json -------------------------------------------------------------------------------- /paymentrequest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/README.md -------------------------------------------------------------------------------- /paymentrequest/can-make-payment/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/can-make-payment/demo.js -------------------------------------------------------------------------------- /paymentrequest/contact-info/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/contact-info/demo.js -------------------------------------------------------------------------------- /paymentrequest/contact-info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/contact-info/index.html -------------------------------------------------------------------------------- /paymentrequest/dynamic-shipping/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/dynamic-shipping/demo.js -------------------------------------------------------------------------------- /paymentrequest/free-shipping/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/free-shipping/demo.js -------------------------------------------------------------------------------- /paymentrequest/free-shipping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/free-shipping/index.html -------------------------------------------------------------------------------- /paymentrequest/google-pay/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/google-pay/demo.js -------------------------------------------------------------------------------- /paymentrequest/google-pay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/google-pay/index.html -------------------------------------------------------------------------------- /paymentrequest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/index.html -------------------------------------------------------------------------------- /paymentrequest/payment-handler/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/payment-handler/demo.js -------------------------------------------------------------------------------- /paymentrequest/payment-handler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/payment-handler/index.html -------------------------------------------------------------------------------- /paymentrequest/shipping-options/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/shipping-options/demo.js -------------------------------------------------------------------------------- /paymentrequest/stickersheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/paymentrequest/stickersheet/index.html -------------------------------------------------------------------------------- /permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/permissions/README.md -------------------------------------------------------------------------------- /permissions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/permissions/index.html -------------------------------------------------------------------------------- /picture-element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-element/README.md -------------------------------------------------------------------------------- /picture-element/images/butterfly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-element/images/butterfly.jpg -------------------------------------------------------------------------------- /picture-element/images/butterfly.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-element/images/butterfly.webp -------------------------------------------------------------------------------- /picture-element/images/kitten-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-element/images/kitten-large.png -------------------------------------------------------------------------------- /picture-element/images/kitten-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-element/images/kitten-medium.png -------------------------------------------------------------------------------- /picture-element/images/kitten-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-element/images/kitten-small.png -------------------------------------------------------------------------------- /picture-element/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-element/index.html -------------------------------------------------------------------------------- /picture-in-picture/audio-playlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-in-picture/audio-playlist.html -------------------------------------------------------------------------------- /picture-in-picture/audio-playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-in-picture/audio-playlist.js -------------------------------------------------------------------------------- /picture-in-picture/css-pseudo-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-in-picture/css-pseudo-class.html -------------------------------------------------------------------------------- /picture-in-picture/css-pseudo-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-in-picture/css-pseudo-class.js -------------------------------------------------------------------------------- /picture-in-picture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-in-picture/index.html -------------------------------------------------------------------------------- /picture-in-picture/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-in-picture/index.js -------------------------------------------------------------------------------- /picture-in-picture/skip-ad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-in-picture/skip-ad.html -------------------------------------------------------------------------------- /picture-in-picture/skip-ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/picture-in-picture/skip-ad.js -------------------------------------------------------------------------------- /play-return-promise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/play-return-promise/README.md -------------------------------------------------------------------------------- /play-return-promise/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/play-return-promise/demo.js -------------------------------------------------------------------------------- /play-return-promise/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/play-return-promise/index.html -------------------------------------------------------------------------------- /presentation-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/presentation-api/README.md -------------------------------------------------------------------------------- /presentation-api/cast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/presentation-api/cast.html -------------------------------------------------------------------------------- /presentation-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/presentation-api/index.html -------------------------------------------------------------------------------- /presentation-api/receiver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/presentation-api/receiver/index.html -------------------------------------------------------------------------------- /presentation-api/receiver/receiver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/presentation-api/receiver/receiver.js -------------------------------------------------------------------------------- /promise-rejection-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/promise-rejection-events/README.md -------------------------------------------------------------------------------- /promise-rejection-events/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/promise-rejection-events/demo.js -------------------------------------------------------------------------------- /promise-rejection-events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/promise-rejection-events/index.html -------------------------------------------------------------------------------- /prompt-api-iframe/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/prompt-api-iframe/.prettierrc -------------------------------------------------------------------------------- /prompt-api-iframe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/prompt-api-iframe/index.html -------------------------------------------------------------------------------- /prompt-api-iframe/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/prompt-api-iframe/service-worker.js -------------------------------------------------------------------------------- /proxies-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/proxies-es6/README.md -------------------------------------------------------------------------------- /proxies-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/proxies-es6/demo.js -------------------------------------------------------------------------------- /proxies-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/proxies-es6/index.html -------------------------------------------------------------------------------- /push-messaging-and-notifications/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/push-messaging-and-notifications/demo.js -------------------------------------------------------------------------------- /push-messaging-and-notifications/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/push-messaging-and-notifications/main.js -------------------------------------------------------------------------------- /pwa-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/README.md -------------------------------------------------------------------------------- /pwa-testing/app-name-icon-tester/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/app-name-icon-tester/main.js -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/fast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/awesome-casquette/fast.html -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/image-target/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/awesome-casquette/index.html -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/medium.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/awesome-casquette/medium.html -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/awesome-casquette/s1.png -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/awesome-casquette/s2.png -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/awesome-casquette/s3.png -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/awesome-casquette/s4.png -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/s5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/awesome-casquette/s5.png -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/shortcuts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/shortcuts/manifest.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/awesome-casquette/slow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/awesome-casquette/slow.html -------------------------------------------------------------------------------- /pwa-testing/badging-test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/badging-test/common.js -------------------------------------------------------------------------------- /pwa-testing/badging-test/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/badging-test/demo.js -------------------------------------------------------------------------------- /pwa-testing/badging-test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/badging-test/index.html -------------------------------------------------------------------------------- /pwa-testing/badging-test/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/badging-test/log.js -------------------------------------------------------------------------------- /pwa-testing/badging-test/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/badging-test/manifest.json -------------------------------------------------------------------------------- /pwa-testing/badging-test/sadpanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/badging-test/sadpanda.png -------------------------------------------------------------------------------- /pwa-testing/badging-test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/badging-test/style.css -------------------------------------------------------------------------------- /pwa-testing/badging-test/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/badging-test/sw.js -------------------------------------------------------------------------------- /pwa-testing/bush-lowly-system/aqua-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/bush-lowly-system/aqua-32.png -------------------------------------------------------------------------------- /pwa-testing/bush-lowly-system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/bush-lowly-system/index.html -------------------------------------------------------------------------------- /pwa-testing/bush-lowly-system/navy-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/bush-lowly-system/navy-64.png -------------------------------------------------------------------------------- /pwa-testing/bush-lowly-system/script.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | -------------------------------------------------------------------------------- /pwa-testing/bush-lowly-system/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/bush-lowly-system/style.css -------------------------------------------------------------------------------- /pwa-testing/bush-lowly-system/teal-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/bush-lowly-system/teal-48.png -------------------------------------------------------------------------------- /pwa-testing/cache-api-perf/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/cache-api-perf/.gcloudignore -------------------------------------------------------------------------------- /pwa-testing/cache-api-perf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/cache-api-perf/index.js -------------------------------------------------------------------------------- /pwa-testing/cache-api-perf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/cache-api-perf/package.json -------------------------------------------------------------------------------- /pwa-testing/cache-api-perf/public/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/cache-api-perf/public/script_sw.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/carnelian-sneeze/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/carnelian-sneeze/index.html -------------------------------------------------------------------------------- /pwa-testing/carnelian-sneeze/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/carnelian-sneeze/main.js -------------------------------------------------------------------------------- /pwa-testing/carnelian-sneeze/sadpanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/carnelian-sneeze/sadpanda.png -------------------------------------------------------------------------------- /pwa-testing/carnelian-sneeze/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/carnelian-sneeze/sw.js -------------------------------------------------------------------------------- /pwa-testing/carpal-acute-respect/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/carpal-acute-respect/main.js -------------------------------------------------------------------------------- /pwa-testing/chat-app-deep-linking/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/chat-app-deep-linking/db.js -------------------------------------------------------------------------------- /pwa-testing/chat-app-deep-linking/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/chat-app-deep-linking/sw.js -------------------------------------------------------------------------------- /pwa-testing/classic-tall-individual/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/classic-tall-individual/sw.js -------------------------------------------------------------------------------- /pwa-testing/cute-western-seer/Seer144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/cute-western-seer/Seer144.jpg -------------------------------------------------------------------------------- /pwa-testing/cute-western-seer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/cute-western-seer/index.html -------------------------------------------------------------------------------- /pwa-testing/cute-western-seer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/cute-western-seer/main.js -------------------------------------------------------------------------------- /pwa-testing/cute-western-seer/random.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/cute-western-seer/random.jpeg -------------------------------------------------------------------------------- /pwa-testing/daisy-summer-mahogany/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/daisy-summer-mahogany/sw.js -------------------------------------------------------------------------------- /pwa-testing/dull-axiomatic-saver/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/dull-axiomatic-saver/main.js -------------------------------------------------------------------------------- /pwa-testing/dull-axiomatic-saver/manifest.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "theme_color": "#a0f" 3 | } -------------------------------------------------------------------------------- /pwa-testing/dull-axiomatic-saver2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/dull-axiomatic-saver2/main.js -------------------------------------------------------------------------------- /pwa-testing/efficient-newt-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/efficient-newt-1/index.html -------------------------------------------------------------------------------- /pwa-testing/efficient-newt-1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/efficient-newt-1/main.js -------------------------------------------------------------------------------- /pwa-testing/far-noble-cod/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/far-noble-cod/index.html -------------------------------------------------------------------------------- /pwa-testing/far-noble-cod/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/far-noble-cod/manifest.json -------------------------------------------------------------------------------- /pwa-testing/fetch-event-echo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/fetch-event-echo/index.js -------------------------------------------------------------------------------- /pwa-testing/fetch-event-echo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/fetch-event-echo/package.json -------------------------------------------------------------------------------- /pwa-testing/fetch-event-echo/public/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/fetch-event-echo/public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/fetch-event-echo/public/sw.js -------------------------------------------------------------------------------- /pwa-testing/fetch-event-echo/views/upgrader.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/fir-skirt/fir-skirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/fir-skirt/fir-skirt.svg -------------------------------------------------------------------------------- /pwa-testing/fir-skirt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/fir-skirt/index.html -------------------------------------------------------------------------------- /pwa-testing/fir-skirt/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/fir-skirt/main.js -------------------------------------------------------------------------------- /pwa-testing/fir-skirt/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/fir-skirt/package-lock.json -------------------------------------------------------------------------------- /pwa-testing/fir-skirt/serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/fir-skirt/serviceworker.js -------------------------------------------------------------------------------- /pwa-testing/flossy-neon-sugar/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/flossy-neon-sugar/canvas.png -------------------------------------------------------------------------------- /pwa-testing/flossy-neon-sugar/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/flossy-neon-sugar/favicon.png -------------------------------------------------------------------------------- /pwa-testing/flossy-neon-sugar/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/flossy-neon-sugar/home.png -------------------------------------------------------------------------------- /pwa-testing/flossy-neon-sugar/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/flossy-neon-sugar/icon.svg -------------------------------------------------------------------------------- /pwa-testing/flossy-neon-sugar/one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/flossy-neon-sugar/one.html -------------------------------------------------------------------------------- /pwa-testing/flossy-neon-sugar/two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/flossy-neon-sugar/two.html -------------------------------------------------------------------------------- /pwa-testing/global-swordfish/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/global-swordfish/app.js -------------------------------------------------------------------------------- /pwa-testing/global-swordfish/https-redirect.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/global-swordfish/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/global-swordfish/style.css -------------------------------------------------------------------------------- /pwa-testing/hwr-playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/hwr-playground/index.html -------------------------------------------------------------------------------- /pwa-testing/hwr-playground/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/hwr-playground/script.js -------------------------------------------------------------------------------- /pwa-testing/hwr-playground/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/hwr-playground/style.css -------------------------------------------------------------------------------- /pwa-testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/index.html -------------------------------------------------------------------------------- /pwa-testing/joyous-horse-quilt/index.html: -------------------------------------------------------------------------------- 1 | Page intentionally left blank. -------------------------------------------------------------------------------- /pwa-testing/kaput-planet-radon/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/kaput-planet-radon/sw.js -------------------------------------------------------------------------------- /pwa-testing/living-reminder/.bash_history: -------------------------------------------------------------------------------- 1 | ls 2 | ys 3 | ps 4 | vim 5 | -------------------------------------------------------------------------------- /pwa-testing/living-reminder/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/living-reminder/144.png -------------------------------------------------------------------------------- /pwa-testing/living-reminder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/living-reminder/index.html -------------------------------------------------------------------------------- /pwa-testing/living-reminder/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/living-reminder/main.js -------------------------------------------------------------------------------- /pwa-testing/main-pwa-origin-2/.well-known/web-app-origin-association.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/main-pwa-origin-2/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/main-pwa-origin-2/sw.js -------------------------------------------------------------------------------- /pwa-testing/maze-bouncy-viola/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/maze-bouncy-viola/index.js -------------------------------------------------------------------------------- /pwa-testing/mediapicker-select-file/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/noiseless-mum/icon-192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/noiseless-mum/icon-192.jpg -------------------------------------------------------------------------------- /pwa-testing/noiseless-mum/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/noiseless-mum/icon-192.png -------------------------------------------------------------------------------- /pwa-testing/noiseless-mum/icon-512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/noiseless-mum/icon-512.jpg -------------------------------------------------------------------------------- /pwa-testing/noiseless-mum/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/noiseless-mum/index.html -------------------------------------------------------------------------------- /pwa-testing/noiseless-mum/noscope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/noiseless-mum/noscope.html -------------------------------------------------------------------------------- /pwa-testing/noiseless-mum/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/noiseless-mum/script.js -------------------------------------------------------------------------------- /pwa-testing/noiseless-mum/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/noiseless-mum/style.css -------------------------------------------------------------------------------- /pwa-testing/noon-stream-music/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/noon-stream-music/main.js -------------------------------------------------------------------------------- /pwa-testing/notificationsapi/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/notificationsapi/common.js -------------------------------------------------------------------------------- /pwa-testing/notificationsapi/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/notificationsapi/demo.js -------------------------------------------------------------------------------- /pwa-testing/notificationsapi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/notificationsapi/style.css -------------------------------------------------------------------------------- /pwa-testing/notificationsapi/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/notificationsapi/sw.js -------------------------------------------------------------------------------- /pwa-testing/octagonal-eight-potato/public/sw.js: -------------------------------------------------------------------------------- 1 | self.addEventListener('fetch', function(event) {}); -------------------------------------------------------------------------------- /pwa-testing/ruby-clover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/ruby-clover/index.html -------------------------------------------------------------------------------- /pwa-testing/ruby-clover/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/ruby-clover/main.js -------------------------------------------------------------------------------- /pwa-testing/sassy-seasoned-carpet/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/snowy-submarine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/snowy-submarine/index.html -------------------------------------------------------------------------------- /pwa-testing/snowy-submarine/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/snowy-submarine/main.js -------------------------------------------------------------------------------- /pwa-testing/soft-puppy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/soft-puppy/index.html -------------------------------------------------------------------------------- /pwa-testing/soft-puppy/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/soft-puppy/main.js -------------------------------------------------------------------------------- /pwa-testing/soft-puppy/spicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/soft-puppy/spicon.png -------------------------------------------------------------------------------- /pwa-testing/soft-puppy/spup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/soft-puppy/spup.png -------------------------------------------------------------------------------- /pwa-testing/star-fire-agate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/star-fire-agate/index.html -------------------------------------------------------------------------------- /pwa-testing/star-fire-agate/sw.js: -------------------------------------------------------------------------------- 1 | self.addEventListener('fetch', event => {}); -------------------------------------------------------------------------------- /pwa-testing/sulky-lopsided-bean/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sulky-lopsided-bean/sw.js -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/blue-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/blue-192.png -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/contrast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/contrast.js -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/green-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/green-48.png -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/index.html -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/poster/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/poster/sw.js -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/pwa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/pwa/index.html -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/red-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/red-16.png -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/shortcuts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/svg/index.html -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/svg/red-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/svg/red-16.svg -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/text-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/text-192.png -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/text-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/text-48.png -------------------------------------------------------------------------------- /pwa-testing/sunny-cart/yellow-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/sunny-cart/yellow-32.png -------------------------------------------------------------------------------- /pwa-testing/telling-krills/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/telling-krills/index.html -------------------------------------------------------------------------------- /pwa-testing/telling-krills/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/telling-krills/main.js -------------------------------------------------------------------------------- /pwa-testing/thundering-frigate/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/thundering-frigate/main.js -------------------------------------------------------------------------------- /pwa-testing/uncovered-hound/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/uncovered-hound/index.html -------------------------------------------------------------------------------- /pwa-testing/uncovered-hound/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/uncovered-hound/main.js -------------------------------------------------------------------------------- /pwa-testing/uncovered-hound/uhicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/uncovered-hound/uhicon.png -------------------------------------------------------------------------------- /pwa-testing/upbeat-hydrant/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/upbeat-hydrant/index.html -------------------------------------------------------------------------------- /pwa-testing/upbeat-hydrant/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/upbeat-hydrant/main.js -------------------------------------------------------------------------------- /pwa-testing/watery-shingle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/watery-shingle/index.html -------------------------------------------------------------------------------- /pwa-testing/watery-shingle/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/watery-shingle/main.js -------------------------------------------------------------------------------- /pwa-testing/watery-shingle/wsicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/watery-shingle/wsicon.png -------------------------------------------------------------------------------- /pwa-testing/web-usb-api-test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/web-usb-api-test/LICENSE -------------------------------------------------------------------------------- /pwa-testing/web-usb-api-test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/web-usb-api-test/style.css -------------------------------------------------------------------------------- /pwa-testing/webappbundle/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/webappbundle/.gcloudignore -------------------------------------------------------------------------------- /pwa-testing/webappbundle/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/webappbundle/img.png -------------------------------------------------------------------------------- /pwa-testing/webappbundle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/webappbundle/index.js -------------------------------------------------------------------------------- /pwa-testing/webappbundle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/webappbundle/package.json -------------------------------------------------------------------------------- /pwa-testing/wooded-crayfish/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/wooded-crayfish/index.html -------------------------------------------------------------------------------- /pwa-testing/wooded-crayfish/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/wooded-crayfish/main.js -------------------------------------------------------------------------------- /pwa-testing/yielding-large-chef/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/yielding-large-chef/sw.js -------------------------------------------------------------------------------- /pwa-testing/youtube-icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/youtube-icons/16.png -------------------------------------------------------------------------------- /pwa-testing/youtube-icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/youtube-icons/32.png -------------------------------------------------------------------------------- /pwa-testing/youtube-icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/youtube-icons/48.png -------------------------------------------------------------------------------- /pwa-testing/youtube-icons/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/youtube-icons/512.png -------------------------------------------------------------------------------- /pwa-testing/youtube-icons/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/youtube-icons/common.js -------------------------------------------------------------------------------- /pwa-testing/youtube-icons/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/youtube-icons/demo.js -------------------------------------------------------------------------------- /pwa-testing/youtube-icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/youtube-icons/index.html -------------------------------------------------------------------------------- /pwa-testing/youtube-icons/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/youtube-icons/style.css -------------------------------------------------------------------------------- /pwa-testing/youtube-icons/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/pwa-testing/youtube-icons/sw.js -------------------------------------------------------------------------------- /quictransport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/quictransport/README.md -------------------------------------------------------------------------------- /quictransport/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/quictransport/client.css -------------------------------------------------------------------------------- /quictransport/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/quictransport/client.html -------------------------------------------------------------------------------- /quictransport/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/quictransport/client.js -------------------------------------------------------------------------------- /quictransport/quic_transport_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/quictransport/quic_transport_server.py -------------------------------------------------------------------------------- /quictransport/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/quictransport/screenshot.png -------------------------------------------------------------------------------- /read-an-image-file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/read-an-image-file/index.html -------------------------------------------------------------------------------- /read-an-image-file/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/read-an-image-file/styles.css -------------------------------------------------------------------------------- /report-validity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/report-validity/README.md -------------------------------------------------------------------------------- /report-validity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/report-validity/index.html -------------------------------------------------------------------------------- /requestvideoframecallback/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/requestvideoframecallback/index.html -------------------------------------------------------------------------------- /requestvideoframecallback/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/requestvideoframecallback/script.js -------------------------------------------------------------------------------- /requestvideoframecallback/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/requestvideoframecallback/style.css -------------------------------------------------------------------------------- /resizeobserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/resizeobserver/README.md -------------------------------------------------------------------------------- /resizeobserver/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/resizeobserver/demo.js -------------------------------------------------------------------------------- /resizeobserver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/resizeobserver/index.html -------------------------------------------------------------------------------- /rest-parameters-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/rest-parameters-es6/README.md -------------------------------------------------------------------------------- /rest-parameters-es6/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/rest-parameters-es6/demo.js -------------------------------------------------------------------------------- /rest-parameters-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/rest-parameters-es6/index.html -------------------------------------------------------------------------------- /screen-orientation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/screen-orientation/README.md -------------------------------------------------------------------------------- /screen-orientation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/screen-orientation/index.html -------------------------------------------------------------------------------- /seamless-titlebar/close-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/close-w-15.png -------------------------------------------------------------------------------- /seamless-titlebar/fugu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/fugu.png -------------------------------------------------------------------------------- /seamless-titlebar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/index.html -------------------------------------------------------------------------------- /seamless-titlebar/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/manifest.webmanifest -------------------------------------------------------------------------------- /seamless-titlebar/max-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/max-w-15.png -------------------------------------------------------------------------------- /seamless-titlebar/min-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/min-w-15.png -------------------------------------------------------------------------------- /seamless-titlebar/restore-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/restore-w-15.png -------------------------------------------------------------------------------- /seamless-titlebar/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/script.js -------------------------------------------------------------------------------- /seamless-titlebar/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/service-worker.js -------------------------------------------------------------------------------- /seamless-titlebar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/seamless-titlebar/style.css -------------------------------------------------------------------------------- /sec-ch-prefers-color-scheme/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/sec-ch-prefers-color-scheme/server.js -------------------------------------------------------------------------------- /service-worker/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/.eslintrc -------------------------------------------------------------------------------- /service-worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/README.md -------------------------------------------------------------------------------- /service-worker/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/basic/README.md -------------------------------------------------------------------------------- /service-worker/basic/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/basic/demo.js -------------------------------------------------------------------------------- /service-worker/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/basic/index.html -------------------------------------------------------------------------------- /service-worker/basic/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/basic/service-worker.js -------------------------------------------------------------------------------- /service-worker/basic/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/basic/styles.css -------------------------------------------------------------------------------- /service-worker/foreign-fetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/foreign-fetch/README.md -------------------------------------------------------------------------------- /service-worker/post-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/post-message/README.md -------------------------------------------------------------------------------- /service-worker/post-message/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/post-message/demo.js -------------------------------------------------------------------------------- /service-worker/post-message/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/post-message/index.html -------------------------------------------------------------------------------- /service-worker/prefetch-video/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/prefetch-video/index.js -------------------------------------------------------------------------------- /service-worker/prefetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/prefetch/README.md -------------------------------------------------------------------------------- /service-worker/prefetch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/prefetch/index.html -------------------------------------------------------------------------------- /service-worker/prefetch/static/not_pre_fetched.txt: -------------------------------------------------------------------------------- 1 | I'm a file that hasn't been pre-fetched. 2 | -------------------------------------------------------------------------------- /service-worker/prefetch/static/pre_fetched.txt: -------------------------------------------------------------------------------- 1 | I'm a basic file that's been pre-fetched. 2 | -------------------------------------------------------------------------------- /service-worker/registration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/registration/README.md -------------------------------------------------------------------------------- /service-worker/registration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/registration/index.html -------------------------------------------------------------------------------- /service-worker/registration/service-worker.js: -------------------------------------------------------------------------------- 1 | // This service worker doesn't actually do anything! 2 | -------------------------------------------------------------------------------- /service-worker/window-caches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/window-caches/README.md -------------------------------------------------------------------------------- /service-worker/window-caches/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/service-worker/window-caches/demo.js -------------------------------------------------------------------------------- /service-worker/window-caches/static/pre_fetched.txt: -------------------------------------------------------------------------------- 1 | I'm a basic file that's been pre-fetched. 2 | -------------------------------------------------------------------------------- /serviceworker-static-routing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/serviceworker-static-routing/index.js -------------------------------------------------------------------------------- /spread-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/spread-operator/README.md -------------------------------------------------------------------------------- /spread-operator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/spread-operator/index.html -------------------------------------------------------------------------------- /sqlite-wasm-opfs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/sqlite-wasm-opfs/index.html -------------------------------------------------------------------------------- /sqlite-wasm-opfs/jswasm/sqlite3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/sqlite-wasm-opfs/jswasm/sqlite3.js -------------------------------------------------------------------------------- /sqlite-wasm-opfs/jswasm/sqlite3.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/sqlite-wasm-opfs/jswasm/sqlite3.wasm -------------------------------------------------------------------------------- /sqlite-wasm-opfs/speedtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/sqlite-wasm-opfs/speedtest.html -------------------------------------------------------------------------------- /sqlite-wasm-opfs/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/sqlite-wasm-opfs/worker.js -------------------------------------------------------------------------------- /streams-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/streams-demo/index.html -------------------------------------------------------------------------------- /streams-demo/lorem-ipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/streams-demo/lorem-ipsum.txt -------------------------------------------------------------------------------- /streams-demo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/streams-demo/script.js -------------------------------------------------------------------------------- /streams-demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/streams-demo/style.css -------------------------------------------------------------------------------- /styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/styles/main.css -------------------------------------------------------------------------------- /subresource-integrity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/subresource-integrity/README.md -------------------------------------------------------------------------------- /subresource-integrity/correct_hash.css: -------------------------------------------------------------------------------- 1 | #correct { 2 | background-color: #00e300; 3 | } 4 | -------------------------------------------------------------------------------- /subresource-integrity/incorrect_hash.css: -------------------------------------------------------------------------------- 1 | #incorrect { 2 | background-color: #ff9ca0; 3 | } 4 | -------------------------------------------------------------------------------- /subresource-integrity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/subresource-integrity/index.html -------------------------------------------------------------------------------- /tabbed-application-mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/tabbed-application-mode/index.html -------------------------------------------------------------------------------- /tabbed-application-mode/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/tabbed-application-mode/manifest.json -------------------------------------------------------------------------------- /tabbed-application-mode/one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/tabbed-application-mode/one.html -------------------------------------------------------------------------------- /tabbed-application-mode/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/tabbed-application-mode/styles.css -------------------------------------------------------------------------------- /tabbed-application-mode/two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/tabbed-application-mode/two.html -------------------------------------------------------------------------------- /template-literals-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/template-literals-es6/README.md -------------------------------------------------------------------------------- /template-literals-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/template-literals-es6/index.html -------------------------------------------------------------------------------- /third-party-iframe/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/third-party-iframe/iframe.html -------------------------------------------------------------------------------- /third-party-iframe/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/third-party-iframe/script.js -------------------------------------------------------------------------------- /third-party-iframe/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/third-party-iframe/style.css -------------------------------------------------------------------------------- /todo-ai/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/.editorconfig -------------------------------------------------------------------------------- /todo-ai/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/.gitignore -------------------------------------------------------------------------------- /todo-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/README.md -------------------------------------------------------------------------------- /todo-ai/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/angular.json -------------------------------------------------------------------------------- /todo-ai/dist/todo-ai/prerendered-routes.json: -------------------------------------------------------------------------------- 1 | { 2 | "routes": {} 3 | } -------------------------------------------------------------------------------- /todo-ai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/package-lock.json -------------------------------------------------------------------------------- /todo-ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/package.json -------------------------------------------------------------------------------- /todo-ai/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/public/favicon.ico -------------------------------------------------------------------------------- /todo-ai/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/app/app.component.css -------------------------------------------------------------------------------- /todo-ai/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/app/app.component.html -------------------------------------------------------------------------------- /todo-ai/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/app/app.component.ts -------------------------------------------------------------------------------- /todo-ai/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/app/app.config.ts -------------------------------------------------------------------------------- /todo-ai/src/app/nav/nav.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/app/nav/nav.component.css -------------------------------------------------------------------------------- /todo-ai/src/app/nav/nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/app/nav/nav.component.html -------------------------------------------------------------------------------- /todo-ai/src/app/nav/nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/app/nav/nav.component.ts -------------------------------------------------------------------------------- /todo-ai/src/app/todo.ts: -------------------------------------------------------------------------------- 1 | export interface Todo { 2 | text: string; 3 | done: boolean; 4 | } 5 | -------------------------------------------------------------------------------- /todo-ai/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/index.html -------------------------------------------------------------------------------- /todo-ai/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/main.ts -------------------------------------------------------------------------------- /todo-ai/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/src/styles.css -------------------------------------------------------------------------------- /todo-ai/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/tsconfig.app.json -------------------------------------------------------------------------------- /todo-ai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/tsconfig.json -------------------------------------------------------------------------------- /todo-ai/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/todo-ai/tsconfig.spec.json -------------------------------------------------------------------------------- /touch-action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/touch-action/README.md -------------------------------------------------------------------------------- /touch-action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/touch-action/index.html -------------------------------------------------------------------------------- /transformstream-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/transformstream-demo/index.html -------------------------------------------------------------------------------- /transformstream-demo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/transformstream-demo/script.js -------------------------------------------------------------------------------- /transformstream-demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/transformstream-demo/style.css -------------------------------------------------------------------------------- /trick-ad-click/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/trick-ad-click/cat.jpg -------------------------------------------------------------------------------- /trick-ad-click/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/trick-ad-click/dog.jpg -------------------------------------------------------------------------------- /trick-ad-click/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/trick-ad-click/index.html -------------------------------------------------------------------------------- /trick-ad-click/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/trick-ad-click/script.js -------------------------------------------------------------------------------- /trick-ad-click/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/trick-ad-click/style.css -------------------------------------------------------------------------------- /typedarray-methods-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/typedarray-methods-es6/README.md -------------------------------------------------------------------------------- /typedarray-methods-es6/demo1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/typedarray-methods-es6/demo1.js -------------------------------------------------------------------------------- /typedarray-methods-es6/demo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/typedarray-methods-es6/demo2.js -------------------------------------------------------------------------------- /typedarray-methods-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/typedarray-methods-es6/index.html -------------------------------------------------------------------------------- /urlsearchparams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/urlsearchparams/README.md -------------------------------------------------------------------------------- /urlsearchparams/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/urlsearchparams/index.html -------------------------------------------------------------------------------- /urlsearchparams/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/urlsearchparams/page.css -------------------------------------------------------------------------------- /variable-fonts-experiments/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/variable-fonts-experiments/.DS_Store -------------------------------------------------------------------------------- /variable-fonts-experiments/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/variable-fonts-experiments/readme.md -------------------------------------------------------------------------------- /vibration/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/vibration/.eslintrc -------------------------------------------------------------------------------- /vibration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/vibration/README.md -------------------------------------------------------------------------------- /vibration/demo1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/vibration/demo1.js -------------------------------------------------------------------------------- /vibration/demo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/vibration/demo2.js -------------------------------------------------------------------------------- /vibration/demo3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/vibration/demo3.js -------------------------------------------------------------------------------- /vibration/demo4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/vibration/demo4.js -------------------------------------------------------------------------------- /vibration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/vibration/index.html -------------------------------------------------------------------------------- /virtualkeyboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/virtualkeyboard/index.html -------------------------------------------------------------------------------- /virtualkeyboard/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/virtualkeyboard/script.js -------------------------------------------------------------------------------- /virtualkeyboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/virtualkeyboard/style.css -------------------------------------------------------------------------------- /virtualkeyboard/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/virtualkeyboard/util.js -------------------------------------------------------------------------------- /wakelock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/wakelock/index.html -------------------------------------------------------------------------------- /wakelock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/wakelock/script.js -------------------------------------------------------------------------------- /wakelock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/wakelock/style.css -------------------------------------------------------------------------------- /web-animations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-animations/README.md -------------------------------------------------------------------------------- /web-animations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-animations/index.html -------------------------------------------------------------------------------- /web-application-manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-application-manifest/README.md -------------------------------------------------------------------------------- /web-application-manifest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-application-manifest/index.html -------------------------------------------------------------------------------- /web-application-manifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-application-manifest/manifest.json -------------------------------------------------------------------------------- /web-bluetooth/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/.eslintrc -------------------------------------------------------------------------------- /web-bluetooth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/README.md -------------------------------------------------------------------------------- /web-bluetooth/_includes/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/_includes/intro.html -------------------------------------------------------------------------------- /web-bluetooth/_includes/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/_includes/utils.html -------------------------------------------------------------------------------- /web-bluetooth/automatic-reconnect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/automatic-reconnect.html -------------------------------------------------------------------------------- /web-bluetooth/automatic-reconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/automatic-reconnect.js -------------------------------------------------------------------------------- /web-bluetooth/availability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/availability.html -------------------------------------------------------------------------------- /web-bluetooth/availability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/availability.js -------------------------------------------------------------------------------- /web-bluetooth/battery-level.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/battery-level.html -------------------------------------------------------------------------------- /web-bluetooth/battery-level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/battery-level.js -------------------------------------------------------------------------------- /web-bluetooth/device-disconnect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/device-disconnect.html -------------------------------------------------------------------------------- /web-bluetooth/device-disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/device-disconnect.js -------------------------------------------------------------------------------- /web-bluetooth/device-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/device-info.html -------------------------------------------------------------------------------- /web-bluetooth/device-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/device-info.js -------------------------------------------------------------------------------- /web-bluetooth/exclusion-filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/exclusion-filters.html -------------------------------------------------------------------------------- /web-bluetooth/exclusion-filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/exclusion-filters.js -------------------------------------------------------------------------------- /web-bluetooth/gap-characteristics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/gap-characteristics.html -------------------------------------------------------------------------------- /web-bluetooth/gap-characteristics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/gap-characteristics.js -------------------------------------------------------------------------------- /web-bluetooth/get-characteristics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/get-characteristics.html -------------------------------------------------------------------------------- /web-bluetooth/get-characteristics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/get-characteristics.js -------------------------------------------------------------------------------- /web-bluetooth/get-descriptors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/get-descriptors.html -------------------------------------------------------------------------------- /web-bluetooth/get-descriptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/get-descriptors.js -------------------------------------------------------------------------------- /web-bluetooth/get-devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/get-devices.html -------------------------------------------------------------------------------- /web-bluetooth/get-devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/get-devices.js -------------------------------------------------------------------------------- /web-bluetooth/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/icon.png -------------------------------------------------------------------------------- /web-bluetooth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/index.html -------------------------------------------------------------------------------- /web-bluetooth/link-loss-async-await.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/link-loss-async-await.js -------------------------------------------------------------------------------- /web-bluetooth/link-loss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/link-loss.html -------------------------------------------------------------------------------- /web-bluetooth/link-loss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/link-loss.js -------------------------------------------------------------------------------- /web-bluetooth/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/notifications.html -------------------------------------------------------------------------------- /web-bluetooth/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/notifications.js -------------------------------------------------------------------------------- /web-bluetooth/read-descriptors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/read-descriptors.html -------------------------------------------------------------------------------- /web-bluetooth/read-descriptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/read-descriptors.js -------------------------------------------------------------------------------- /web-bluetooth/reset-energy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/reset-energy.html -------------------------------------------------------------------------------- /web-bluetooth/reset-energy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/reset-energy.js -------------------------------------------------------------------------------- /web-bluetooth/scan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/scan.html -------------------------------------------------------------------------------- /web-bluetooth/scan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/scan.js -------------------------------------------------------------------------------- /web-bluetooth/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/service-worker.js -------------------------------------------------------------------------------- /web-bluetooth/watch-advertisements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/watch-advertisements.js -------------------------------------------------------------------------------- /web-bluetooth/write-descriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/write-descriptor.html -------------------------------------------------------------------------------- /web-bluetooth/write-descriptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-bluetooth/write-descriptor.js -------------------------------------------------------------------------------- /web-nfc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-nfc/index.html -------------------------------------------------------------------------------- /web-nfc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-nfc/index.js -------------------------------------------------------------------------------- /web-share-in-third-party-iframe/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web-share/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/.gitignore -------------------------------------------------------------------------------- /web-share/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/LICENSE -------------------------------------------------------------------------------- /web-share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/README.md -------------------------------------------------------------------------------- /web-share/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/firebase.json -------------------------------------------------------------------------------- /web-share/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/package-lock.json -------------------------------------------------------------------------------- /web-share/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/package.json -------------------------------------------------------------------------------- /web-share/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/rollup.config.js -------------------------------------------------------------------------------- /web-share/src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/css/index.css -------------------------------------------------------------------------------- /web-share/src/images/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/images/audio.png -------------------------------------------------------------------------------- /web-share/src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/images/icon.png -------------------------------------------------------------------------------- /web-share/src/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/images/image.png -------------------------------------------------------------------------------- /web-share/src/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/images/splash.jpg -------------------------------------------------------------------------------- /web-share/src/images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/images/video.png -------------------------------------------------------------------------------- /web-share/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/index.html -------------------------------------------------------------------------------- /web-share/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/js/app.js -------------------------------------------------------------------------------- /web-share/src/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/js/constants.js -------------------------------------------------------------------------------- /web-share/src/js/contentIndexing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/js/contentIndexing.js -------------------------------------------------------------------------------- /web-share/src/js/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/js/service-worker.js -------------------------------------------------------------------------------- /web-share/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/manifest.json -------------------------------------------------------------------------------- /web-share/src/svelte/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/src/svelte/App.svelte -------------------------------------------------------------------------------- /web-share/workbox-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-share/workbox-config.js -------------------------------------------------------------------------------- /web-sql-to-sqlite-wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-sql-to-sqlite-wasm/index.html -------------------------------------------------------------------------------- /web-sql-to-sqlite-wasm/mywebsqldump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-sql-to-sqlite-wasm/mywebsqldump.js -------------------------------------------------------------------------------- /web-sql-to-sqlite-wasm/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-sql-to-sqlite-wasm/script.js -------------------------------------------------------------------------------- /web-sql-to-sqlite-wasm/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-sql-to-sqlite-wasm/style.css -------------------------------------------------------------------------------- /web-sql-to-sqlite-wasm/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-sql-to-sqlite-wasm/worker.js -------------------------------------------------------------------------------- /web-vr/basic-input/demo/demo-vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-vr/basic-input/demo/demo-vr.js -------------------------------------------------------------------------------- /web-vr/basic-input/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-vr/basic-input/demo/demo.js -------------------------------------------------------------------------------- /web-vr/basic-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-vr/basic-input/index.html -------------------------------------------------------------------------------- /web-vr/hello-world/demo/demo-vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-vr/hello-world/demo/demo-vr.js -------------------------------------------------------------------------------- /web-vr/hello-world/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-vr/hello-world/demo/demo.js -------------------------------------------------------------------------------- /web-vr/hello-world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/web-vr/hello-world/index.html -------------------------------------------------------------------------------- /webassembly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/README.md -------------------------------------------------------------------------------- /webassembly/fib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/fib.c -------------------------------------------------------------------------------- /webassembly/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/fib.js -------------------------------------------------------------------------------- /webassembly/fib.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/fib.wasm -------------------------------------------------------------------------------- /webassembly/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/image.html -------------------------------------------------------------------------------- /webassembly/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/image.jpg -------------------------------------------------------------------------------- /webassembly/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/image.js -------------------------------------------------------------------------------- /webassembly/image.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/image.wasm -------------------------------------------------------------------------------- /webassembly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/index.html -------------------------------------------------------------------------------- /webassembly/version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/version.html -------------------------------------------------------------------------------- /webassembly/webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webassembly/webp.c -------------------------------------------------------------------------------- /webaudio-audiocontext-close/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webaudio-audiocontext-close/README.md -------------------------------------------------------------------------------- /webaudio-audiocontext-close/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webaudio-audiocontext-close/index.html -------------------------------------------------------------------------------- /webaudio-method-chaining/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webaudio-method-chaining/.eslintrc -------------------------------------------------------------------------------- /webaudio-method-chaining/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webaudio-method-chaining/README.md -------------------------------------------------------------------------------- /webaudio-method-chaining/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webaudio-method-chaining/audio.mp3 -------------------------------------------------------------------------------- /webaudio-method-chaining/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webaudio-method-chaining/demo.js -------------------------------------------------------------------------------- /webaudio-method-chaining/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webaudio-method-chaining/index.html -------------------------------------------------------------------------------- /webaudio-suspend-resume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webaudio-suspend-resume/README.md -------------------------------------------------------------------------------- /webaudio-suspend-resume/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webaudio-suspend-resume/index.html -------------------------------------------------------------------------------- /websocketstream-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/websocketstream-demo/package-lock.json -------------------------------------------------------------------------------- /websocketstream-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/websocketstream-demo/package.json -------------------------------------------------------------------------------- /websocketstream-demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/websocketstream-demo/public/index.html -------------------------------------------------------------------------------- /websocketstream-demo/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/websocketstream-demo/public/script.js -------------------------------------------------------------------------------- /websocketstream-demo/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/websocketstream-demo/public/style.css -------------------------------------------------------------------------------- /websocketstream-demo/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/websocketstream-demo/server.mjs -------------------------------------------------------------------------------- /webtransport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webtransport/README.md -------------------------------------------------------------------------------- /webtransport/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webtransport/client.css -------------------------------------------------------------------------------- /webtransport/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webtransport/client.html -------------------------------------------------------------------------------- /webtransport/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webtransport/client.js -------------------------------------------------------------------------------- /webtransport/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webtransport/screenshot.png -------------------------------------------------------------------------------- /webtransport/webtransport_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/webtransport/webtransport_server.py -------------------------------------------------------------------------------- /window-controls-overlay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/window-controls-overlay/index.html -------------------------------------------------------------------------------- /window-controls-overlay/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/window-controls-overlay/script.js -------------------------------------------------------------------------------- /window-controls-overlay/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/window-controls-overlay/style.css -------------------------------------------------------------------------------- /window-controls-overlay/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/window-controls-overlay/sw.js -------------------------------------------------------------------------------- /window-management/elmer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/window-management/elmer.jpg -------------------------------------------------------------------------------- /window-management/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/window-management/iframe.html -------------------------------------------------------------------------------- /window-management/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/window-management/index.html -------------------------------------------------------------------------------- /window-management/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/window-management/script.js -------------------------------------------------------------------------------- /window-management/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChrome/samples/HEAD/window-management/style.css --------------------------------------------------------------------------------