diff --git a/deploy.sh b/deploy.sh
index d1643691b..3c724b962 100644
--- a/deploy.sh
+++ b/deploy.sh
@@ -77,6 +77,8 @@ else
rm $WEB_ROOT/index.intermediate.html
cp service-worker.js $WEB_ROOT/service-worker.js
+ cp manifest.json $WEB_ROOT/manifest.json
+
echo "Living standard output to $WEB_ROOT"
fi
diff --git a/index.bs b/index.bs
index 2e1c2f19b..d27fccb42 100644
--- a/index.bs
+++ b/index.bs
@@ -60,6 +60,7 @@ urlPrefix: https://tc39.github.io/ecma262/; spec: ECMASCRIPT
+
Introduction
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 000000000..e6f4aa7a7
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,20 @@
+{
+ "short_name": "Streams",
+ "name": "The WHATWG Streams Standard",
+ "icons": [
+ {
+ "src": "https://resources.whatwg.org/logo-streams.svg",
+ "sizes": "any",
+ "type": "image/svg+xml"
+ },
+ {
+ "src": "https://resources.whatwg.org/logo-streams.png",
+ "sizes": "500x500",
+ "type": "image/png"
+ }
+ ],
+ "start_url": "/",
+ "display": "browser",
+ "background_color": "#3c790a",
+ "theme_color": "#3c790a"
+}