llm-slop-detector 0.8.1 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.0](https://github.com/mandakan/llm-slop-detector/compare/llm-slop-detector-v0.8.1...llm-slop-detector-v0.9.0) (2026-05-30)
4
+
5
+
6
+ ### Features
7
+
8
+ * skip NBSP detection in rich-text editors by default ([#79](https://github.com/mandakan/llm-slop-detector/issues/79)) ([ba90929](https://github.com/mandakan/llm-slop-detector/commit/ba90929299e3cc84845901c7091b104ff98e185c))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** bump vulnerable transitive deps flagged by dependabot ([#95](https://github.com/mandakan/llm-slop-detector/issues/95)) ([90228a7](https://github.com/mandakan/llm-slop-detector/commit/90228a7a468840e06f47ea64be839af90695eb25))
14
+
3
15
  ## [0.8.1](https://github.com/mandakan/llm-slop-detector/compare/llm-slop-detector-v0.8.0...llm-slop-detector-v0.8.1) (2026-04-24)
4
16
 
5
17
 
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # LLM Slop Detector
2
2
 
3
3
  [![Install on VS Code Marketplace](https://img.shields.io/badge/VS%20Code-Marketplace-blue?logo=visualstudiocode)](https://marketplace.visualstudio.com/items?itemName=thias-se.llm-slop-detector)
4
+ [![Install on Chrome Web Store](https://img.shields.io/badge/Chrome-Web%20Store-4285F4?logo=googlechrome&logoColor=white)](https://chromewebstore.google.com/detail/llm-slop-detector/ancpfnfeflffphhpaejhpggfhjmafeid)
5
+ [![Install on Firefox Add-ons](https://img.shields.io/badge/Firefox-Add--ons-FF7139?logo=firefox&logoColor=white)](https://addons.mozilla.org/en-US/firefox/addon/llm-slop-detector/)
4
6
  [![License: MIT](https://img.shields.io/github/license/mandakan/llm-slop-detector)](LICENSE)
5
7
 
6
8
  A VS Code extension and CLI that flag invisible Unicode, AI-style punctuation, and telltale LLM phrases in `markdown` and `plaintext` files. The CLI shares its rule engine with the editor, so local and CI findings stay in sync.
@@ -15,7 +17,12 @@ No install needed -- paste text into the [web playground](https://mandakan.githu
15
17
 
16
18
  A WebExtension that scans `<textarea>`, text inputs, and `contenteditable` elements (Gmail compose, vanilla rich-text widgets) as you type on any webpage. Findings are highlighted inline with colour-coded marks -- textarea marks are tinted background, contenteditable marks are wavy underlines so they don't disturb reading of styled content. A small "N slop" badge next to each editor opens a per-finding popover with severity, reason, source pack, per-finding "Fix this" buttons, and a "Fix all chars" button that applies every deterministic character replacement (em dash, curly quotes, zero-width, etc.) at once. For contenteditables the fix goes through `execCommand('insertText')` so the host editor's undo stack still works (`Cmd+Z`). Runs entirely in the browser -- no network calls, no telemetry.
17
19
 
18
- **Install from source (until stores are wired up):**
20
+ **Install from a store:**
21
+
22
+ - **Chrome / Arc / Edge / Brave:** [Chrome Web Store listing](https://chromewebstore.google.com/detail/llm-slop-detector/ancpfnfeflffphhpaejhpggfhjmafeid). Chromium forks accept the same package.
23
+ - **Firefox:** [Firefox Add-ons listing](https://addons.mozilla.org/en-US/firefox/addon/llm-slop-detector/).
24
+
25
+ **Install from source (for hacking on the rules):**
19
26
 
20
27
  ```sh
21
28
  npm ci
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "LLM Slop Detector",
4
- "version": "0.8.1",
4
+ "version": "0.9.0",
5
5
  "description": "Flags invisible Unicode, AI-style punctuation, and telltale LLM phrases as you type -- or in any page you're reading. Local only.",
6
6
  "permissions": [
7
7
  "storage"
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "llm-slop-detector",
3
3
  "displayName": "LLM Slop Detector",
4
4
  "description": "Highlights invisible Unicode, AI-style punctuation, and telltale LLM phrases in markdown and plain text.",
5
- "version": "0.8.1",
5
+ "version": "0.9.0",
6
6
  "publisher": "thias-se",
7
7
  "engines": {
8
8
  "vscode": "^1.95.0"