Skip to content

Commit f48d033

Browse files
authored
imp(readme): use tree-like chars for web-extension tree structure
1 parent 04a097d commit f48d033

File tree

1 file changed

+32
-31
lines changed

1 file changed

+32
-31
lines changed

README.md

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -17,37 +17,38 @@ It makes some assumptions about your project setup.
1717
I hope to be able to scaffold an app so that identifying the below in unnecessary.
1818

1919
```
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
5152
```
5253

5354
## System Dependencies

0 commit comments

Comments
 (0)