1
0
This commit is contained in:
2025-05-02 07:39:05 +03:00
commit 34f5283940
2 changed files with 37 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
{
"manifest_version": 3,
"name": "Extension options bug demo",
"version": "1.0.0",
"options_ui": {
"open_in_tab": false,
"page": "options.html"
}
}
+28
View File
@@ -0,0 +1,28 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style type="text/css">
html,
body {
margin: 0;
overflow: hidden;
}
main {
display: grid;
height: 100vh;
}
</style>
</head>
<body>
<main>
<h1>Hello from options page</h1>
</main>
</body>
</html>