@@ -17,37 +17,38 @@ It makes some assumptions about your project setup.
17
17
I hope to be able to scaffold an app so that identifying the below in unnecessary.
18
18
19
19
```
20
- |- public/
21
- |- _locales/
22
- |- en/
23
- |- messages.json
24
- |- icons/
25
- |- Icons for your extension. Should include a 16, 19, 38, 48, and 128px square image
26
- |- browser-extension.html (default target html template)
27
- |- src/
28
- |- assets/
29
- |- Static assets in use in your app, like logo.png
30
- |- components/
31
- |- HelloWorld.vue (modified)
32
- |- content-scripts
33
- |- content-script.js
34
- |- devtools/ (asked during project generation)
35
- |- App.vue
36
- |- main.js
37
- |- options/ (asked during project generation)
38
- |- App.vue
39
- |- main.js
40
- |- popup/ (asked during project generation)
41
- |- App.vue
42
- |- main.js
43
- |- override/ (asked during project generation)
44
- |- App.vue
45
- |- main.js
46
- |- standalone/ (asked during project generation)
47
- |- App.vue
48
- |- main.js
49
- |- background.js
50
- |- manifest.json
20
+ .
21
+ ├── public/
22
+ │ ├── _locales/
23
+ │ │ └── en/
24
+ │ │ └── messages.json
25
+ │ ├── icons/
26
+ │ │ └── Icons for your extension. Should include a 16, 19, 38, 48, and 128px square image
27
+ │ └── browser-extension.html (default target html template)
28
+ ├── src/
29
+ │ ├── assets/
30
+ │ │ └── Static assets in use in your app, like logo.png
31
+ │ ├── components/
32
+ │ │ └── HelloWorld.vue (modified)
33
+ │ ├── content-scripts
34
+ │ │ └── content-script.js
35
+ │ ├── devtools/ (asked during project generation)
36
+ │ │ ├── App.vue
37
+ │ │ └── main.js
38
+ │ ├── options/ (asked during project generation)
39
+ │ │ ├── App.vue
40
+ │ │ └── main.js
41
+ │ ├── popup/ (asked during project generation)
42
+ │ │ ├── App.vue
43
+ │ │ └── main.js
44
+ │ ├── override/ (asked during project generation)
45
+ │ │ ├── App.vue
46
+ │ │ └── main.js
47
+ │ └── standalone/ (asked during project generation)
48
+ │ ├── App.vue
49
+ │ └── main.js
50
+ ├── background.js
51
+ └── manifest.json
51
52
```
52
53
53
54
## System Dependencies
0 commit comments