Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
philffm committed Jul 7, 2024
1 parent 10647df commit 6bb37e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bookmarklet-generator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="container">
<h1>AI Summary Helper</h1>
<h2>Bookmarklet Generator</h2>
<label for="apiKey">API Key: </label>
<label for="apiKey">API Key: <a href="https://platform.openai.com/api-keys" target="_blank"> (get your API key)</a></label>
<input type="text" id="apiKey" placeholder="Enter your OpenAI API Key">
<label class="light" for="apiKey">Disclaimer: We are not saving your token. The token is stored locally on your device.</label>
<label for="prompt">Prompt:</label>
Expand Down
2 changes: 1 addition & 1 deletion bookmarklet-generator/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,6 @@ document.addEventListener('DOMContentLoaded', () => {

const encodedBookmarklet = 'javascript:' + encodeURIComponent(bookmarkletCode);
const outputDiv = document.getElementById('output');
outputDiv.innerHTML = `<p>Drag the link below to your bookmarks bar:</p><a href="${encodedBookmarklet}">AI Summary Bookmarklet</a>`;
outputDiv.innerHTML = `<p>Drag the link below to your bookmarks bar:</p><a href="${encodedBookmarklet}">AI Summary 🪄</a>`;
}

0 comments on commit 6bb37e0

Please sign in to comment.