27 lines
576 B
Markdown
27 lines
576 B
Markdown
# Bookmarks
|
|
|
|
[Chrome Docs](https://developer.chrome.com/docs/extensions/mv3/override/) • [Firefox Docs](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/chrome_url_overrides)
|
|
|
|
## Filenames
|
|
|
|
- `entrypoints/bookmarks.html`
|
|
- `entrypoints/bookmarks/index.html`
|
|
|
|
## Definition
|
|
|
|
Plain old HTML file.
|
|
|
|
```html
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<!-- ... -->
|
|
</body>
|
|
</html>
|
|
```
|