29 lines
732 B
Plaintext
29 lines
732 B
Plaintext
|
---
|
||
|
import "../scss/pages/fangs.scss";
|
||
|
import WebExtensionLayout, {
|
||
|
Props as WebExtensionProps,
|
||
|
} from "../layouts/web-extension.astro";
|
||
|
|
||
|
const props: WebExtensionProps = {
|
||
|
frontmatter: {
|
||
|
byline: "Inject custom DuckDuckGo Bangs.",
|
||
|
footer: {
|
||
|
link: "https://git.bauke.xyz/Holllo/fangs",
|
||
|
license: "AGPL-3.0-or-later",
|
||
|
},
|
||
|
name: "Fangs",
|
||
|
pageTitle: "Fangs 🧛",
|
||
|
screenshot: "/fangs-screenshot.png",
|
||
|
stores: {
|
||
|
firefox: "fangs",
|
||
|
chrome: "fangs/dlllfannplfkhbiidhihagjkbmcolclf",
|
||
|
edge: "fangs/fgfkpbflhnljpfniippaagjjlncobhjd",
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
---
|
||
|
|
||
|
<WebExtensionLayout {...props}>
|
||
|
<img alt="Fangs Logo" slot="header-image" src="/fangs-128-opaque.png" />
|
||
|
</WebExtensionLayout>
|