Skip to content

Commit 29e7885

Browse files
author
Simeon Vincent
authored
Adds hello-world tutorial (GoogleChrome#571)
Fixes GoogleChrome#570
1 parent 4d8910f commit 29e7885

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

tutorials/hello-world/hello.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<html>
2+
<body>
3+
<h1>Hello Extensions</h1>
4+
</body>
5+
</html>
319 Bytes
Loading

tutorials/hello-world/manifest.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "Hello Extensions",
3+
"description": "Base Level Extension",
4+
"version": "1.0",
5+
"manifest_version": 3,
6+
"action": {
7+
"default_popup": "hello.html",
8+
"default_icon": "hello_extensions.png"
9+
},
10+
"commands": {
11+
"_execute_action": {
12+
"suggested_key": {
13+
"default": "Ctrl+Shift+F",
14+
"mac": "MacCtrl+Shift+F"
15+
},
16+
"description": "Opens hello.html"
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)