You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28-54Lines changed: 28 additions & 54 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,7 @@ This is intended to be a vue-cli@3.x replacement for [https://github.com/Kocal/v
9
9
This plugin changes the `serve` command for your vue applications.
10
10
This new command is only for running a livereload server while testing out your browser extension.
11
11
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.
14
13
15
14
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.
16
15
@@ -19,61 +18,36 @@ I hope to be able to scaffold an app so that identifying the below in unnecessar
19
18
20
19
```
21
20
|- public/
21
+
|- _locales/
22
+
|- en/
23
+
|- messages.json
22
24
|- icons/
23
25
|- Icons for your extension. Should include a 16, 19, 38, 48, and 128px square image
26
+
|- browser-extension.html (default target html template)
24
27
|- 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
0 commit comments