Skip to content

Commit 91c9a41

Browse files
committed
Fix dead links
1 parent ffc4344 commit 91c9a41

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/en/docs/development/content-scripts.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Extension.js manages content scripts by performing the following actions:
1313

1414
1. **Process Script Files:** All JavaScript and CSS files declared in the `content_scripts` field of the `manifest.json` are compiled, bundled, and emitted.
1515
2. **Inject CSS for Hot-Module Replacement (HMR):** During development, Extension.js injects CSS files dynamically to support HMR, ensuring seamless updates without a full page reload.
16-
3. **Maintain Isolation:** Content scripts operate in an isolated environment, ensuring no direct access to the pages JavaScript context.
16+
3. **Maintain Isolation:** Content scripts operate in an isolated environment, ensuring no direct access to the page's JavaScript context.
1717

1818
## Content Scripts Support
1919

@@ -78,4 +78,4 @@ dist/
7878
## Next Steps
7979

8080
- For further details on using special folders, refer to the [Special Folders documentation](../features/special-folders.mdx).
81-
- Learn about managing resources with [Web-Accessible Resources](./web_accessible_resources).
81+
- Learn about managing resources with [Web-Accessible Resources](./web-accessible-resources).

docs/en/docs/development/icons.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The following manifest fields are used to declare icons:
3131
3232
## Where Icons Appear in Extensions
3333

34-
Icons can appear in different locations across the browser interface, based on where theyre declared in `manifest.json`:
34+
Icons can appear in different locations across the browser interface, based on where they're declared in `manifest.json`:
3535

3636
- **Toolbar Icons:** The `action.default_icon` or `browser_action.default_icon` fields add an icon in the browser's toolbar, making it visible next to the address bar for user interaction.
3737
- **Context Menus:** Declaring icons in `page_action.default_icon` provides a unique icon specific to certain pages, visible only when defined pages are active.
@@ -193,11 +193,11 @@ dist/
193193

194194
## Best Practices
195195

196-
- **Organize with `/public/` Folder:** Place additional icons not declared in the manifest within the `/public` folder to keep project structure clear and ensure theyre accessible if needed.
197-
- **Declare Icons in `manifest.json`:** Always declare icons in the manifest file to ensure theyre correctly bundled in the build process.
196+
- **Organize with `/public/` Folder:** Place additional icons not declared in the manifest within the `/public` folder to keep project structure clear and ensure they're accessible if needed.
197+
- **Declare Icons in `manifest.json`:** Always declare icons in the manifest file to ensure they're correctly bundled in the build process.
198198
- **Provide Multiple Resolutions:** Offer icons in multiple resolutions (e.g., `16px`, `48px`, `128px`) to support various device pixel ratios, ensuring icons display clearly on all devices.
199199

200200
## Next Steps
201201

202202
- For handling icons and other assets, learn more about [Special Folders](../features/special-folders.mdx).
203-
- Review Extension.jss [Documentation on Web-Accessible Resources](../development/web_accessible_resources) for additional guidance on managing accessible assets.
203+
- Review Extension.js's [Documentation on Web-Accessible Resources](../development/web-accessible-resources) for additional guidance on managing accessible assets.

0 commit comments

Comments
 (0)