Skip to content

Commit 7939c7a

Browse files
committed
Updated README to reflect some recent changes
1 parent f799b87 commit 7939c7a

File tree

1 file changed

+28
-54
lines changed

1 file changed

+28
-54
lines changed

README.md

Lines changed: 28 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ This is intended to be a vue-cli@3.x replacement for [https://github.com/Kocal/v
99
This plugin changes the `serve` command for your vue applications.
1010
This new command is only for running a livereload server while testing out your browser extension.
1111

12-
This removes the entrypoint of `main.js`, and as such will not scaffold a general vue app.
13-
That behavior might change when support for a standalone tab application exists, but for now it is gone.
12+
This removes the entrypoint of `src/main.js`, and as such will not scaffold a general vue app.
1413

1514
Packaging and deploying will still be done with `yarn build` and zipping in up for Chrome, Firefox, or whichever other browser you wish to develop for.
1615

@@ -19,61 +18,36 @@ I hope to be able to scaffold an app so that identifying the below in unnecessar
1918

2019
```
2120
|- public/
21+
|- _locales/
22+
|- en/
23+
|- messages.json
2224
|- icons/
2325
|- Icons for your extension. Should include a 16, 19, 38, 48, and 128px square image
26+
|- browser-extension.html (default target html template)
2427
|- src/
25-
|- assets/
26-
|- Static assets in use in your app, like logo.png
27-
|- content_scripts
28-
|- content-script.js
29-
|- devtools/ (asked during project generation)
30-
|- router/
31-
|- pages/
32-
|- Index.vue
33-
|- index.js
34-
|- routes.js
35-
|- App.vue
36-
|- devtools.html
37-
|- devtools.js
38-
|- options/ (asked during project generation)
39-
|- App.vue
40-
|- options.html
41-
|- options.js
42-
|- popup/ (asked during project generation)
43-
|- router/
44-
|- pages/
45-
|- Index.vue
46-
|- index.js
47-
|- routes.js
48-
|- App.vue
49-
|- popup.html
50-
|- popup.js
51-
|- override/ (asked during project generation)
52-
|- router/
53-
|- pages/
54-
|- Index.vue
55-
|- index.js
56-
|- routes.js
57-
|- App.vue
58-
|- override.html
59-
|- override.js
60-
|- standalone/ (asked during project generation)
61-
|- router/
62-
|- pages/
63-
|- Index.vue
64-
|- index.js
65-
|- routes.js
66-
|- App.vue
67-
|- standalone.html
68-
|- standalone.js
69-
|- store/
70-
|- actions.js
71-
|- getters.js
72-
|- index.js
73-
|- mutation-types.js
74-
|- mutations.js
75-
|- background.js
76-
|- manifest.json
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
7751
```
7852

7953
## System Dependencies

0 commit comments

Comments
 (0)