about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2025-03-16 10:59:25 -0400
committerelioat <elioat@tilde.institute>2025-03-16 10:59:25 -0400
commit87d78fd707472be01449e11812b9beae7be01275 (patch)
tree5de466f770da156242559ada76f7d0dd05a53893
parent3f8525f54f3e02e7cf6abaeec73f84d2db4dd108 (diff)
downloadtour-87d78fd707472be01449e11812b9beae7be01275.tar.gz
*
-rw-r--r--js/sentiment/sentiment/index.html40
1 files changed, 7 insertions, 33 deletions
diff --git a/js/sentiment/sentiment/index.html b/js/sentiment/sentiment/index.html
index 90698e4..f84d42c 100644
--- a/js/sentiment/sentiment/index.html
+++ b/js/sentiment/sentiment/index.html
@@ -3,7 +3,7 @@
 <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>Sentiment Analyzer</title>
+    <title>Naive Sentiment Analyzer</title>
     <link href="https://smallandnearlysilent.com/sentiment/PressStart2P-Regular.ttf" rel="stylesheet">
     <style>
         @font-face {
@@ -172,7 +172,6 @@
     </style>
 </head>
 <body>
-    <!-- Pixel art corners -->
     <div class="pixel-corner top-left"></div>
     <div class="pixel-corner top-right"></div>
     <div class="pixel-corner bottom-left"></div>
@@ -182,58 +181,33 @@
     
     <div class="window">
         <p>
-            This bookmarklet analyzes the emotional tone of any webpage.
+            This bookmarklet analyzes the emotional tone of any webpage...badly.
         </p>
     </div>
 
     <div class="installation">
         <h2>Installation guide</h2>
-        <p><strong>Drag this power-up to your inventory:</strong></p>
+        <p><strong>Drag this bookmarklet to your bookmarks bar:</strong></p>
         <a class="bookmarklet" href="javascript:void function(){let e=document.createElement('script');e.src='https://smallandnearlysilent.com/sentiment/sentiment.browser.js',e.onload=function(){analyzePage()},document.head.appendChild(e)}();">
             Sentiment
         </a>
-        
-        <p><strong>Installation steps:</strong></p>
-        <ol>
-            <li>Open your bookmarks (<code>ctrl/cmd + shift + b</code>)</li>
-            <li>Drag the bookmarklet to your bookmarks bar</li>
-            <li>Cook</li>
-        </ol>
     </div>
 
     <h2>How to use it</h2>
     <ol>
-        <li>Navigate to target webpage</li>
+        <li>Navigate to a web page</li>
         <li>Click the bookmarklet in your bookmarks bar</li>
         <li>It'll analyze the page and display the results in a popup</li>
     </ol>
 
-    <div class="window">
-        <h3>Results include:</h3>
-        <ul>
-            <li>Emotional alignment</li>
-            <li>Power level</li>
-            <li>Sentiment score</li>
-            <li>Word statistics</li>
-            <li>Positive/negative ratio</li>
-        </ul>
-    </div>
-
     <div class="warning">
-        <h3>Important notice</h3>
+        <h3>Considerations</h3>
         <ul>
-            <li>Optimal targets: articles & blog posts</li>
+            <li>Primarily works with articles and blog posts</li>
             <li>English text only</li>
-            <li>Some sites may have shields up</li>
-            <li>No data collection - stealth mode</li>
         </ul>
     </div>
 
-    <h2>Security Considerations</h2>
-    <p>
-        Everything runs locally. No data is transmitted anywhere.
-    </p>
-
     <footer>
         <p>
             <a href="sentiment.browser.js" target="_blank">VIEW THE SCRIPT</a>
@@ -243,7 +217,7 @@
     <script>
         document.querySelector('.bookmarklet').addEventListener('click', function(e) {
             e.preventDefault();
-            alert('COMMAND INVALID!\nDRAG TO INVENTORY (BOOKMARKS) INSTEAD!');
+            alert('COMMAND INVALID!\nDRAG TO BOOKMARKS INSTEAD OF CLICKING!');
         });
     </script>
 </body>