diff --git a/astro/src/content.config.ts b/astro/src/content.config.ts index bb378bc..45a14ab 100644 --- a/astro/src/content.config.ts +++ b/astro/src/content.config.ts @@ -5,10 +5,17 @@ const extensions = defineCollection({ schema: z.object({ name: z.string(), tagline: z.string(), + description: z.string(), features: z.array(z.string()).optional(), screenshot: z.string().optional(), chromeStoreUrl: z.string().url().optional().or(z.literal('')), downloadUrl: z.string().optional(), + faq: z.array( + z.object({ + question: z.string(), + answer: z.string(), + }) + ).optional(), }), }); diff --git a/astro/src/content/extensions/tabfm.md b/astro/src/content/extensions/tabfm.md new file mode 100644 index 0000000..292d767 --- /dev/null +++ b/astro/src/content/extensions/tabfm.md @@ -0,0 +1,66 @@ +--- +name: TabFM +tagline: Lo-fi radio in every new tab. 15 ambient soundscapes, a clock, and a search bar — 100% offline. +description: "TabFM is a free Chrome extension that turns every new tab into a lo-fi radio station. Choose from 15 ambient soundscapes — rainy loft, night drive, forest dawn, coffee shop, deep space, and more. Built-in clock and Google search. Everything offline, no streaming, no tracking. 100% free, no premium tiers." +features: + - "15 ambient soundscapes (rain, forest, ocean, deep space, vinyl, and more)" + - "Clock + Google search built into the new tab page" + - "Animated gradient backgrounds that match each soundscape" + - "Play, pause, skip, and volume controls" + - "100% offline — no streaming, no external services" + - "100% free, no premium tiers, no ads, no tracking" +screenshot: "" +chromeStoreUrl: "" +downloadUrl: "https://git.greasysprocket.com/monyi/tabfm/releases" +faq: + - question: "Is TabFM really free?" + answer: "Yes, 100% free. All 15 soundscapes are available to everyone. No premium tiers, no locked features, no usage limits. If you enjoy it, you can buy me a coffee — but there's zero pressure." + - question: "Does TabFM collect any data?" + answer: "No. TabFM doesn't collect any data. No analytics, no tracking, no telemetry. All audio files are bundled with the extension — nothing is downloaded from external servers." + - question: "Does TabFM need an internet connection?" + answer: "No. All soundscapes are bundled as audio files inside the extension. Once installed, TabFM works completely offline. The only network request is the Google search bar, which goes to Google when you search." + - question: "Will TabFM replace my Google search?" + answer: "TabFM replaces the new tab page with a custom page that includes a Google search bar. You can still search Google directly from the new tab — the search bar is right there. Everything else (clock, soundscapes) is additive." + - question: "How many soundscapes are there?" + answer: "15 soundscapes: Rainy Loft, Night Drive, Forest Dawn, Coffee Shop, Ocean Waves, Crackling Fire, Vinyl Crackle, Deep Space, Winter Wind, Summer Night, Vinyl Jazz, Mountain Stream, City Rain, Tibetan Bowl, and Pixel Rain. All free." + - question: "Does TabFM autoplay sound when I open a new tab?" + answer: "Yes, by default TabFM autoplays the last selected soundscape when you open a new tab. You can pause it with the play/pause button, and the volume is adjustable. Autoplay is enabled because the new tab page is an extension page, not a regular website." +--- + +TabFM replaces your new tab page with a calm, focused space: a clock, a Google search bar, +and 15 ambient soundscapes to set the mood. + +## Soundscapes + +| Vibe | Soundscapes | +|------|-------------| +| Cozy | Rainy Loft, Coffee Shop, Vinyl Crackle, Vinyl Jazz | +| Nature | Forest Dawn, Ocean Waves, Mountain Stream, City Rain | +| Focus | Night Drive, Deep Space, Crackling Fire, Pixel Rain | +| Calm | Winter Wind, Summer Night, Tibetan Bowl | + +Each soundscape is a 3–5 minute loop, synthesized with DSP (numpy/scipy) and bundled +as a compact MP3. No streaming, no external services — everything lives inside the +extension. + +## How it works + +When you open a new tab, TabFM loads instantly with the clock, search bar, and player. +The last selected soundscape auto-plays (you can pause it). The animated gradient +background shifts to match the soundscape's color palette. + +Switch soundscapes from the grid below the player, or use the skip buttons. Volume +is adjustable and your preferences are saved across sessions via `chrome.storage.sync`. + +## Privacy + +TabFM doesn't collect any data. No analytics, no tracking, no telemetry. +All audio files are bundled with the extension — nothing is downloaded from external +servers. The only permission requested is `storage` (to remember your volume and +selected soundscape). + +## Free forever + +TabFM is 100% free. All 15 soundscapes are available to everyone. There are no +premium tiers, no locked features, no usage limits. If you enjoy it, you can +[buy me a coffee](/coffee) — but there's zero pressure. \ No newline at end of file diff --git a/astro/src/content/extensions/text-tools.md b/astro/src/content/extensions/text-tools.md index 71f66db..56e05ed 100644 --- a/astro/src/content/extensions/text-tools.md +++ b/astro/src/content/extensions/text-tools.md @@ -1,6 +1,7 @@ --- name: Text Tools tagline: Convert text instantly — UPPERCASE, lowercase, camelCase, kebab-case, and 9 more. Popup or right-click. Free. +description: "Text Tools is a free Chrome extension that converts text instantly. 12 transforms including UPPERCASE, lowercase, Title Case, camelCase, kebab-case, snake_case, and more. Works from the toolbar popup or the right-click context menu. No tracking, no premium tiers, 100% free." features: - "12 transforms: UPPERCASE, lowercase, Title Case, Sentence case" - "Code cases: camelCase, PascalCase, kebab-case, snake_case, CONSTANT_CASE" @@ -11,6 +12,19 @@ features: screenshot: "" chromeStoreUrl: "" downloadUrl: "https://git.greasysprocket.com/monyi/text-tools/releases" +faq: + - question: "Is Text Tools really free?" + answer: "Yes, 100% free. All 12 transforms are available to everyone. No premium tiers, no locked features, no usage limits. If you enjoy it, you can buy me a coffee — but there's zero pressure." + - question: "Does Text Tools collect any data?" + answer: "No. Text Tools doesn't collect any data. No analytics, no tracking, no telemetry. Everything runs locally in your browser. Nothing is sent to any server." + - question: "How do I use Text Tools?" + answer: "Two ways: (1) Click the toolbar icon to open the popup, paste text, pick a transform, and copy. (2) Select text on any page, right-click, go to Text Tools, and pick a transform — the result is automatically copied to your clipboard." + - question: "What text transforms are available?" + answer: "12 transforms across three categories: Case (UPPERCASE, lowercase, Title Case, Sentence case), Code (camelCase, PascalCase, kebab-case, snake_case, CONSTANT_CASE), and Utility (Reverse, Trim, Remove line breaks)." + - question: "Does Text Tools work offline?" + answer: "Yes. Text Tools works entirely offline. All processing happens locally in your browser. No internet connection is needed after installation." + - question: "Can I use Text Tools on any website?" + answer: "Yes. The context menu works on any website where you can select text. The popup works anywhere — just click the toolbar icon, paste, and transform." --- Text Tools works two ways: @@ -26,6 +40,16 @@ Text Tools works two ways: | Code | camelCase, PascalCase, kebab-case, snake_case, CONSTANT_CASE | | Utility | Reverse, Trim, Remove line breaks | +## How it works + +Text Tools runs entirely in your browser. When you select text and right-click, the +extension reads your selection, applies the transform, and writes the result to your +clipboard — all locally, no server round-trip. The popup works the same way: paste, +pick a transform, and the result is ready to copy. + +The extension uses standard Clipboard API and context menu APIs. No background scripts +that phone home, no analytics, no telemetry. + ## Privacy Text Tools doesn't collect any data. No analytics, no tracking, no telemetry. diff --git a/astro/src/content/extensions/thockboard.md b/astro/src/content/extensions/thockboard.md index 8295f44..d2158a9 100644 --- a/astro/src/content/extensions/thockboard.md +++ b/astro/src/content/extensions/thockboard.md @@ -1,6 +1,7 @@ --- name: ThockBoard tagline: Mechanical keyboard sounds for every keystroke. 16 sound packs, zero setup. +description: "ThockBoard is a free Chrome extension that plays satisfying mechanical keyboard sounds on every keystroke, on any website. Choose from 16 sound packs including Cherry MX Blue, buckling spring, zen water drops, and more. No tracking, no premium tiers, 100% free." features: - "16 sound packs (Cherry MX, buckling spring, zen, water drops, and more)" - "Adjustable volume per pack" @@ -10,6 +11,19 @@ features: screenshot: "/images/thockboard-preview.png" chromeStoreUrl: "" downloadUrl: "https://git.d0a1.es/d0a1/thockboard/releases" +faq: + - question: "Is ThockBoard really free?" + answer: "Yes, 100% free. All 16 sound packs are available to everyone. No premium tiers, no locked features, no usage limits. If you enjoy it, you can buy me a coffee — but there's zero pressure." + - question: "Does ThockBoard collect any data?" + answer: "No. ThockBoard doesn't collect any data. No analytics, no tracking, no telemetry. Sound files are bundled with the extension — nothing is downloaded from external servers." + - question: "Will ThockBoard slow down my browser?" + answer: "No. ThockBoard uses the Web Audio API to play short sound clips on keystroke. The audio engine is lightweight and only active when typing. CPU usage is negligible." + - question: "Can I use ThockBoard on any website?" + answer: "Yes. ThockBoard works on any website without configuration. Just install it, pick a sound pack, and start typing." + - question: "How do I change the sound pack or volume?" + answer: "Click the ThockBoard icon in your Chrome toolbar to open the popup. From there you can select any of the 16 sound packs and adjust the volume slider." + - question: "Does it work with other browsers like Firefox or Edge?" + answer: "ThockBoard is built for Chrome and Chromium-based browsers (Edge, Brave, Arc). A Firefox version is not planned but the extension uses standard WebExtensions APIs, so it could work with minor adjustments." --- ThockBoard adds satisfying mechanical keyboard sounds to every keystroke, on any website. @@ -27,10 +41,22 @@ for realistic, non-repetitive audio. | Zen | Water Drop, Bamboo, Singing Bowl, Crystal | | Fun | Bubble, Soft Tap, Pop, Mechanical Click, Rain | +## How it works + +ThockBoard listens to keyboard events on whatever page you're typing on — Google Docs, +GitHub, Twitter, a plain textarea — and plays a short audio clip for each keystroke. +The clips are pre-loaded from bundled audio files, so there's no network request on every +key press. The Web Audio API handles playback with near-zero latency. + +You pick a sound pack and set the volume from the popup. That's it. No settings page, +no account, no configuration file. + ## Privacy ThockBoard doesn't collect any data. No analytics, no tracking, no telemetry. Sound files are bundled with the extension — nothing is downloaded from external servers. +The extension doesn't request any permissions beyond what's needed to listen to keyboard +events and play audio. ## Free forever diff --git a/astro/src/layouts/Base.astro b/astro/src/layouts/Base.astro index a96e491..026dbc1 100644 --- a/astro/src/layouts/Base.astro +++ b/astro/src/layouts/Base.astro @@ -4,9 +4,28 @@ import '../styles/global.css'; interface Props { title: string; description?: string; + canonical?: string; + ogImage?: string; + jsonLd?: object | object[]; } -const { title, description = 'Free Chrome extensions — no limits, no catch.' } = Astro.props; +const { + title, + description = 'Free Chrome extensions — no limits, no catch.', + canonical, + ogImage, + jsonLd, +} = Astro.props; + +const siteUrl = 'https://greasysprocket.com'; +const canonicalUrl = canonical || new URL(Astro.url.pathname, siteUrl).href; +const ogImageUrl = ogImage + ? new URL(ogImage, siteUrl).href + : new URL('/favicon.svg', siteUrl).href; + +const jsonLdArray = jsonLd + ? Array.isArray(jsonLd) ? jsonLd : [jsonLd] + : []; --- @@ -17,9 +36,35 @@ const { title, description = 'Free Chrome extensions — no limits, no catch.' } + + + + + + + + + + + + + + + + + + + + +
{f.answer}
+