Aaron
1649785826
fix(storage)!: Only run migrations when the extension is updated ( #478 )
2024-02-22 11:46:59 -06:00
Aaron Klinker
91fc41cb15
docs(storage): Update docs
2024-02-22 11:46:59 -06:00
Aaron
9d31a4eba1
chore: Simplify entrypoint types ( #464 )
2024-02-19 16:17:54 -06:00
Aaron Klinker
bc24ea45a4
docs: Add wrapper div to react's createShadowRootUi example
...
Related to #456 .
2024-02-17 09:20:35 -06:00
Aaron Klinker
87a62a1791
docs: Remove anchor from content script ui examples
2024-02-14 14:43:34 -06:00
Aaron Klinker
a0d1643021
docs: Add section about dev mode differences
2024-02-14 14:41:40 -06:00
Aaron Klinker
946072fc5a
docs: Fix createShadowRootUi unmount calls
2024-02-10 04:04:16 -06:00
Aaron
a38ccd8624
doc: Fix custom block
2024-02-09 05:20:51 -06:00
Chen Hua
557ccb4854
docs: fix typo of opinionated ( #416 )
2024-02-04 03:11:03 -06:00
Chen Hua
83e7e8aab9
docs: Fix typo of intuitive ( #415 )
2024-02-04 03:10:20 -06:00
Aaron Klinker
1e12ce2a0d
docs: Document how to opt into ESM
2024-02-02 10:48:00 -06:00
Aaron
26e30aaae9
feat: Add submit command ( #370 )
2024-01-30 12:55:17 -06:00
0x7a7a
9049804413
docs: Fixed doc errors on the guide/extension-api page ( #383 )
...
Co-authored-by: Aaron Klinker <aaronklinker1@gmail.com >
2024-01-29 14:06:27 -06:00
Aaron
927aca612e
fix!: Move browser constants to import.meta.env ( #380 )
...
BREAKING CHANGE: Renamed undocumented constants:
- `__BROWSER__` → `import.meta.env.BROWSER`
- `__COMMAND__` → `import.meta.env.COMMAND`
- `__MANIFEST_VERSION__` → `import.meta.env.MANIFEST_VERSION`
- `__IS_CHROME__` → `import.meta.env.CHROME`
- `__IS_FIREFOX__` → `import.meta.env.FIREFOX`
- `__IS_SAFARI__` → `import.meta.env.SAFARI`
- `__IS_EDGE__` → `import.meta.env.EDGE`
- `__IS_OPERA__` → `import.meta.env.OPERA`
2024-01-29 11:14:18 -06:00
Aaron Klinker
fc45c37f22
docs: Add missing await to createShadowRootUi examples
...
This closes #374
2024-01-27 11:02:15 -06:00
Aaron Klinker
68874e607e
docs: Document defined constants for the build target
2024-01-27 10:56:14 -06:00
東奈比
d32e59e38f
docs: fix incorrect sample code ( #372 )
2024-01-26 10:26:10 -06:00
Aaron Klinker
dab8efa140
docs: Add matches to content script examples
2024-01-24 07:58:47 -06:00
Armin
6ed61d0766
docs: Fix typos and outdated ui function usage ( #347 )
2024-01-16 13:01:12 -06:00
Aaron
89d8ef9a50
fix: Improve error message and document use of imported variables outside an entrypoint's main function ( #346 )
2024-01-14 09:36:22 -06:00
Aaron
5343430c0f
feat!: Refactor content script UI functions and add helper for "integrated" UIs ( #333 )
...
BREAKING CHANGES: Several APIs/options have been renamed:
- `type: "inline" | "overlay" | "modal"` has been changed to `position: "inline" | "overlay" | "modal"`
- `createContentScriptUi({ ... })` → `createShadowRootUi({ ... })`
- `createContentScriptIframe({ ... })` → `createIframeUi({ ... })`
- `onRemove` is now called ***before*** the UI is removed from the DOM, previously it was called after the UI was removed
2024-01-10 20:48:17 -06:00
Aaron Klinker
8683bd4b77
docs: Add section about customizing other browser options during development
2024-01-08 13:42:50 -06:00
Aaron
b0eb7da9b4
chore: Refactor manifest generation E2E tests to unit tests ( #323 )
2024-01-02 17:05:23 -06:00
Aaron
4f649fc872
feat(DX): Add ctrl+E/cmd+E shortcut to reload extension during development ( #322 )
2024-01-02 12:06:22 -06:00
冯不游
e347f4529f
feat: Add isolateEvents option to createContentScripUi ( #313 )
...
Co-authored-by: Aaron <aaronklinker1@gmail.com >
2024-01-01 10:01:33 -06:00
Aaron
e7775f291a
docs: Use example tags to automate relevant example lists ( #311 )
2023-12-29 17:25:46 -06:00
Aaron Klinker
2ad099bf7e
docs: General fixes and improvements
2023-12-27 12:32:59 -06:00
Aaron
d1b9e5ded6
feat!: New wxt/storage APIs ( #300 )
...
BREAKING CHANGE: `wxt/storage` no longer relies on `unstorage`. Some `unstorage` APIs, like `prefixStorage`, have been removed, while others, like `snapshot`, are methods on the new `storage` object. Most of the standard usage remains the same.
2023-12-27 11:00:10 -06:00
Aaron
ad0e8e4144
fix: Correctly mock webextension-polyfill for Vitest ( #294 )
2023-12-22 22:21:09 -06:00
Aaron Klinker
291d25b675
docs: Fix dead links
2023-12-13 15:50:09 -06:00
Aaron
6f902cc598
docs: Improve content script UI guide ( #272 )
2023-12-13 15:43:40 -06:00
Aaron
fde488ac82
feat!: Add support for "main world" content scripts ( #284 )
...
BREAKING CHANGE: `defineContentScript` and `defineBackground` are now exported from `wxt/sandbox` instead of `wxt/client`. If you use auto-imports, no changes are required. If you have disabled auto-imports, you'll need to manually update your import statements.
2023-12-13 15:41:39 -06:00
Aaron
21cf3642cb
docs: Improve content script UI docs ( #268 )
2023-12-09 23:36:35 -06:00
Aaron
d2cb8f9416
feat: Add wxt/storage API ( #234 )
2023-11-14 23:07:45 -06:00
Nenad Novaković
046a4809d3
feat!: Allow plural directory and only png's for manifest icons ( #237 )
...
BREAKING CHANGE: No longer discover icons with extensions other than `.png`. If you previously used `.jpg`, `.jpeg`, `.bmp`, or `.svg`, you'll need to convert your icons to `.png` files or manually add them to the manifest inside your `wxt.config.ts` file.
2023-11-14 23:07:09 -06:00
Aaron
67ffa44f9c
docs: Update feature comparison
2023-11-11 08:53:59 -06:00
Aaron Klinker
19756c61ce
docs: Add test.server.deps.inline to Vitest guide
2023-10-30 09:48:52 -05:00
Nenad Novaković
dd26b99027
docs: Update auto-imports.md ( #186 )
2023-10-29 08:29:54 -05:00
Aaron Klinker
d9e9b43f8d
docs: Improve runner.binaries documentation
2023-10-25 03:14:53 -05:00
Aaron
874a531a62
feat: Add testing utils under wxt/testing ( #178 )
2023-10-18 16:28:26 -05:00
Aaron
527600031f
docs: Generate full API docs with typedoc ( #174 )
2023-10-14 22:03:23 -05:00
Aaron
44464f914f
feat!: Use defineUnlistedScript to define unlisted scripts ( #167 )
...
BREAKING CHANGE: Unlisted scripts must now `export default defineUnlistedScript(...)`
2023-10-14 10:06:52 -05:00
Aaron Klinker
446f265b6c
types!: Rename BackgroundScriptDefintition to BackgroundDefinition
2023-10-14 09:41:07 -05:00
渣渣120
7a465684c0
docs: Fix wrong links ( #166 )
2023-10-14 08:09:46 -05:00
Aaron Klinker
b58fb02016
docs: Add migration guides
2023-10-07 10:49:31 -05:00
Aaron
da1f7f3ea5
feat: Support JS entrypoints ( #155 )
2023-10-07 09:53:47 -05:00
Aaron
868fd27804
feat: Allow customizing entrypoint options per browser ( #154 )
2023-10-05 17:12:20 -05:00
Aaron Klinker
f58d69dc5f
docs: Add docs for development and testing
2023-10-02 15:05:47 -05:00
Aaron
c9028dd335
docs: Restructure website to improve UX ( #149 )
2023-10-02 09:42:46 -05:00
Aaron Klinker
65fcfc0064
docs: Add docs for createContentScriptUi
2023-09-30 23:05:07 -05:00