3 Commits

Author SHA1 Message Date
Jack Case
03c694712a Merge pull request #10 from GandalfDG/bugfix_altcha_csp
move to altcha dist_external to elide dependency on blob source in CSP
2025-12-07 21:43:52 -05:00
Jack Case
e15ffdb4d8 move to altcha dist_external to elide dependency on blob source in CSP
reference: https://altcha.org/docs/website-integration/#content-security-policy-csp
2025-12-08 02:37:56 +00:00
Jack Case
31a17eca78 Mark email verification signup as completed 2025-11-24 09:21:19 -05:00
3 changed files with 7 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ This is a work in progress.
- Search on DuckDuckGo and your results will be checked against known slop domains and paths so anything known to be slop will appear as a red link - Search on DuckDuckGo and your results will be checked against known slop domains and paths so anything known to be slop will appear as a red link
## TODOs ## TODOs
- Implement signup with email verification - Implement signup with email verification
- Enable link checking without signup using a proof-of-work check to limit bot access to API - Enable link checking without signup using a proof-of-work check to limit bot access to API
- Enable voting on reported slop to get rid of false reports - Enable voting on reported slop to get rid of false reports
- Improve user experience - Improve user experience

View File

@@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "Slop Farmer", "name": "Slop Farmer",
"version": "0.5.2", "version": "0.5.4",
"author": "Jack Case", "author": "Jack Case",
"description": "Crowd-source AI slop pages and domains", "description": "Crowd-source AI slop pages and domains",
@@ -13,7 +13,7 @@
"*://*.duckduckgo.com/*" "*://*.duckduckgo.com/*"
], ],
"content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self'", "content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; worker-src 'self'",
"browser_action": { "browser_action": {
"default_title": "Slop Farmer", "default_title": "Slop Farmer",

View File

@@ -5,8 +5,11 @@
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> --> <!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<!-- <script async defer src="https://cdn.jsdelivr.net/gh/altcha-org/altcha/dist/altcha.min.js" type="module"></script> --> <!-- <script async defer src="https://cdn.jsdelivr.net/gh/altcha-org/altcha/dist/altcha.min.js" type="module"></script> -->
<script async src="/scripts/browser-action.js" type="module"></script> <script async src="/scripts/browser-action.js" type="module"></script>
<script async defer src="/scripts/altcha/dist/altcha.js" type="module"></script> <script async defer src="/scripts/altcha/dist_external/altcha.js" type="module"></script>
<script async defer src="/scripts/altcha/dist_external/worker.js" type="module"></script>
<link rel="stylesheet" href="/styles/bulma/bulma.min.css"> <link rel="stylesheet" href="/styles/bulma/bulma.min.css">
<link rel="stylesheet" href="/scripts/altcha/dist_external/altcha.css">
<title>Slop Farmer</title> <title>Slop Farmer</title>
</head> </head>