Create a chrome extension that adds contextual links to Skia Dashboards.
Test: Tested locally.
Change-Id: Idde2e81c581506ecc5311b2d6a9cc66443a78519
diff --git a/development/benchmarks-chrome-extension/rollup.config.js b/development/benchmarks-chrome-extension/rollup.config.js
new file mode 100644
index 0000000..4aa06af
--- /dev/null
+++ b/development/benchmarks-chrome-extension/rollup.config.js
@@ -0,0 +1,18 @@
+// rollup.config.js
+import json from '@rollup/plugin-json';
+import typescript from '@rollup/plugin-typescript';
+
+export default {
+ input: 'src/content-scripts.ts',
+ output: {
+ file: 'dist/assets/content-scripts.js',
+ sourcemap: true,
+ format: 'iife'
+ },
+ plugins: [
+ typescript({
+ sourceMap: true
+ }),
+ json()
+ ]
+};