Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
philffm committed Nov 20, 2024
1 parent 1754e0b commit 25796cb
Show file tree
Hide file tree
Showing 5 changed files with 594 additions and 20 deletions.
5 changes: 3 additions & 2 deletions chrome-extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
"manifest_version": 3,
"name": "__MSG_extensionName__",
"default_locale": "en",
"version": "1.5.19",
"version": "1.5.21",
"description": "__MSG_extensionDescription__",
"permissions": [
"tabs",
"activeTab",
"storage"
"storage",
"https://api.openai.com/*"
],
"background": {
"service_worker": "background.js"
Expand Down
12 changes: 10 additions & 2 deletions chrome-extension/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ <h2>AI Summary Helper</h2>
<div class="header-buttons">
<button id="appsButton" class="button-secondary" title="Apps">💠</button>
<button id="historyButton" class="button-secondary" title="History">🗂️</button>
<button id="podcastButton" class="button-secondary">🎙️</button>
<button id="backButton" class="button–secondary" title="Back" style="display: none;">Back</button>
<button id="toggleScreenButton" class="button-secondary" title="Settings">⚙️</button>
</div>
Expand Down Expand Up @@ -66,7 +67,7 @@ <h2>AI Summary Helper</h2>
<label for="model">Model <span id="apiKeyLink" style="font-weight: normal;"></span></label>
<select id="model">
<option value="openai">OpenAI 4o</option>
<option value="mistral">Mistral</option>
<option value="mistral">Mistral</option>
<option value="ollama">Ollama (Local)</option>
</select>
<div id="modelIdentifierContainer">
Expand Down Expand Up @@ -103,7 +104,6 @@ <h2>AI Summary Helper</h2>
<button id="deleteSettingsButton" class="button danger">Delete Settings</button>
<!-- delete history -->
<button id="deleteHistoryButton" class="button danger">Delete History</button>

</div>
</div>
</div>
Expand All @@ -114,7 +114,15 @@ <h2>AI Summary Helper</h2>
</form>
</div>
<div id="historyScreen" class="screen" style="display: none;">
<div class="podcast-tools">
<h2>Podcasts</h2>
<audio id="podcastAudioPlayer" controls style="display: none; width: 100%; margin-top: 10px;"></audio>
<div id="podcastList" class="podcast-list">
<button id="playPodcastButton" class="button-primary" style="display: none;">🎙️ Create</button>
</div>
</div>
<input type="text" id="searchInput" placeholder="Search articles... (⌘ + F)" />

<ul id="articleList"></ul>
</div>
<script src="popup.js"></script>
Expand Down
Loading

0 comments on commit 25796cb

Please sign in to comment.