Create a chrome extension that adds contextual links to Skia Dashboards.

Test: Tested locally.

Change-Id: Idde2e81c581506ecc5311b2d6a9cc66443a78519
diff --git a/development/benchmarks-chrome-extension/manifest.json b/development/benchmarks-chrome-extension/manifest.json
new file mode 100644
index 0000000..45ab2da
--- /dev/null
+++ b/development/benchmarks-chrome-extension/manifest.json
@@ -0,0 +1,24 @@
+{
+  "manifest_version": 3,
+  "version": "0.1",
+  "name": "AndroidX Benchmarks Extension",
+  "icons": {
+    "48": "dist/assets/icons/benchmark_48.png",
+    "128": "dist/assets/icons/benchmark_128.png",
+    "512": "dist/assets/icons/benchmark_512.png"
+  },
+  "action": {
+    "default_title": "Adds contextual links to Skia Dashboards"
+  },
+  "content_scripts": [
+    {
+      "matches": [
+        "https://androidx-perf.skia.org/*"
+      ],
+      "all_frames": true,
+      "js": [
+        "dist/assets/content-scripts.js"
+      ]
+    }
+  ]
+}