Skip to content

Commit db372d6

Browse files
author
eons44
committed
add icons
1 parent cc4771c commit db372d6

13 files changed

Lines changed: 171 additions & 12 deletions

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ node_modules
33
dist
44
eons-dev-launcher
55
*lock.*
6-
src/manifest.json
6+
src/manifest.json
7+
public/

eons.logo.png

800 KB
Loading

inc/chromium/manifest.json

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
"name": "Eons Dev Launcher",
44
"version": "1.0",
55
"description": "Adds an 'Open' button to git repos to launch a dev workspace.",
6-
"permissions": ["storage"],
6+
"permissions": [
7+
"storage"
8+
],
79
"options_ui": {
810
"page": "src/options.html",
911
"open_in_tab": true
@@ -20,11 +22,28 @@
2022
"https://gitlab.com/*",
2123
"https://git.infrastructure.tech/*"
2224
],
23-
"js": ["src/content.ts"],
24-
"css": ["src/style.css"]
25+
"js": [
26+
"src/content.ts"
27+
],
28+
"css": [
29+
"src/style.css"
30+
]
2531
}
2632
],
2733
"action": {
28-
"default_title": "Eons Dev Launcher"
34+
"default_title": "Eons Dev Launcher",
35+
"default_icon": {
36+
"16": "icons/icon-16.png",
37+
"32": "icons/icon-32.png",
38+
"48": "icons/icon-48.png",
39+
"128": "icons/icon-128.png"
40+
}
41+
},
42+
"icons": {
43+
"16": "icons/icon-16.png",
44+
"32": "icons/icon-32.png",
45+
"48": "icons/icon-48.png",
46+
"128": "icons/icon-128.png",
47+
"256": "icons/icon-256.png"
2948
}
3049
}

inc/gecko/manifest.json

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
"name": "Eons Dev Launcher",
44
"version": "1.0",
55
"description": "Adds an 'Open' button to git repos to launch a dev workspace.",
6-
"permissions": ["storage"],
6+
"permissions": [
7+
"storage"
8+
],
79
"options_ui": {
810
"page": "src/options.html",
911
"open_in_tab": true
@@ -20,18 +22,34 @@
2022
"https://gitlab.com/*",
2123
"https://git.infrastructure.tech/*"
2224
],
23-
"js": ["src/content.ts"],
24-
"css": ["src/style.css"]
25+
"js": [
26+
"src/content.ts"
27+
],
28+
"css": [
29+
"src/style.css"
30+
]
2531
}
2632
],
2733
"action": {
28-
"default_title": "Eons Dev Launcher"
34+
"default_title": "Eons Dev Launcher",
35+
"default_icon": {
36+
"16": "icons/icon-16.png",
37+
"32": "icons/icon-32.png",
38+
"48": "icons/icon-48.png",
39+
"128": "icons/icon-128.png"
40+
}
41+
},
42+
"icons": {
43+
"16": "icons/icon-16.png",
44+
"32": "icons/icon-32.png",
45+
"48": "icons/icon-48.png",
46+
"128": "icons/icon-128.png",
47+
"256": "icons/icon-256.png"
2948
},
3049
"browser_specific_settings": {
3150
"gecko": {
3251
"id": "dev.launcher@eons",
3352
"strict_min_version": "115.0"
3453
}
3554
}
36-
}
37-
55+
}

inc/icons/icon-128.png

9.55 KB
Loading

inc/icons/icon-16.png

795 Bytes
Loading

inc/icons/icon-256.png

20.4 KB
Loading

inc/icons/icon-32.png

1.92 KB
Loading

inc/icons/icon-48.png

3.43 KB
Loading

inc/icons/icon-64.png

4.78 KB
Loading

0 commit comments

Comments
 (0)