extension 1.4.3-0 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -5
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
[fossa-image]: https://app.fossa.com/api/projects/git%2Bgithub.com%2Fcezaraugusto%2Fextension.svg?type=shield&issueType=license
|
|
13
13
|
[fossa-url]: https://app.fossa.com/projects/git%2Bgithub.com%2Fcezaraugusto%2Fextension?ref=badge_shield&issueType=license
|
|
14
14
|
|
|
15
|
-
#
|
|
15
|
+
# Extension [![npm][npm-image]][npm-url] [![fossa][fossa-image]][fossa-url] [![workflow][action-image]][action-url] [![downloads][downloads-image]][downloads-url] [![PR's welcome][prs]][prs-url]
|
|
16
16
|
|
|
17
17
|
> Plug-and-play, zero-config, cross-browser extension development tool.
|
|
18
18
|
|
|
19
|
-
<img width="1440" alt="Screenshot 2024-03-25 at 13 06 15" src="https://github.com/cezaraugusto/
|
|
19
|
+
<img width="1440" alt="Screenshot 2024-03-25 at 13 06 15" src="https://github.com/cezaraugusto/extension.js.org/assets/4672033/01a90694-4705-416e-898c-20bf845984e7">
|
|
20
20
|
|
|
21
21
|
<hr>
|
|
22
22
|
|
|
@@ -147,8 +147,17 @@ Done. You are all set!
|
|
|
147
147
|
|
|
148
148
|
☑️ = Likely works but no browser runner support yet.
|
|
149
149
|
|
|
150
|
-
|
|
|
151
|
-
|
|
150
|
+
| <img src="https://raw.githubusercontent.com/alrra/browser-logos/main/src/brave/brave.svg" width="100" height="100"> | <img src="https://raw.githubusercontent.com/alrra/browser-logos/main/src/chrome/chrome.svg" width="100" height="100"> | <img src="https://raw.githubusercontent.com/alrra/browser-logos/main/src/edge/edge.svg" width="100" height="100"> | <img src="https://raw.githubusercontent.com/alrra/browser-logos/main/src/firefox/firefox.svg" width="100" height="100"> | <img src="https://raw.githubusercontent.com/alrra/browser-logos/main/src/opera/opera.svg" width="100" height="100"> | <img width="100" height="100" src="https://raw.githubusercontent.com/alrra/browser-logos/main/src/safari/safari.svg">| <img src="https://raw.githubusercontent.com/alrra/browser-logos/main/src/vivaldi/vivaldi.svg" width="100" height="100"> |
|
|
151
|
+
|-|-|-|-|-|-|-|
|
|
152
|
+
| Brave Browser | Google Chrome | Microsoft Edge | Mozilla Firefox | Opera Browser | Apple Safari | Vivaldi Browser |
|
|
153
|
+
| ☑️ | ✅ | ✅ | ⛔️ | ☑️ | ⛔️ | ☑️ |
|
|
154
|
+
|
|
155
|
+
### Mobile Browsers
|
|
156
|
+
|
|
157
|
+
| <img src="https://raw.githubusercontent.com/alrra/browser-logos/main/src/firefox/firefox.svg" width="100" height="100"> | <img src="https://raw.githubusercontent.com/alrra/browser-logos/main/src/safari-ios/safari-ios.svg" width="100" height="100"> |
|
|
158
|
+
|-|-|
|
|
159
|
+
| Firefox For Android | Safari On iOS |
|
|
160
|
+
| ⛔️ | ⛔️ |
|
|
152
161
|
|
|
153
162
|
If you want to target a specific browser, just pass the `--browser` flag to the `dev`/`start` command (based on the list available above), like `npx extension dev path/to/extension --browser=edge`.
|
|
154
163
|
|
|
@@ -159,7 +168,7 @@ If you want to target a specific browser, just pass the `--browser` flag to the
|
|
|
159
168
|
extension dev --browser=all
|
|
160
169
|
```
|
|
161
170
|
|
|
162
|
-
<img width="1440" alt="Screenshot 2024-03-25 at 13 06 15" src="https://github.com/cezaraugusto/
|
|
171
|
+
<img width="1440" alt="Screenshot 2024-03-25 at 13 06 15" src="https://github.com/cezaraugusto/extension.js.org/assets/4672033/01a90694-4705-416e-898c-20bf845984e7">
|
|
163
172
|
|
|
164
173
|
## License
|
|
165
174
|
|
package/dist/cli.js
CHANGED
|
@@ -139,7 +139,7 @@ var package_default = {
|
|
|
139
139
|
node: ">=18"
|
|
140
140
|
},
|
|
141
141
|
name: "extension",
|
|
142
|
-
version: "1.4.
|
|
142
|
+
version: "1.4.5",
|
|
143
143
|
description: "Create cross-browser extensions with no build configuration.",
|
|
144
144
|
main: "./dist/cli.js",
|
|
145
145
|
types: "./dist/cli.d.ts",
|
package/package.json
CHANGED