firefox + llama.cpp == very good prose.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(manifest) add icons and update to v3

eagleusb 9c8d5397 0cffd0ab

+13 -3
assets/shakespeare-icon.png

This is a binary file and will not be displayed.

+12 -3
src/manifest.json
··· 1 1 { 2 - "manifest_version": 2, 2 + "manifest_version": 3, 3 3 "name": "Shakespeare", 4 4 "version": "0.1.0", 5 5 "description": "Correct selected text via local OpenAI compatible API", ··· 18 18 "contextMenus", 19 19 "activeTab", 20 20 "tabs", 21 - "http://localhost:8080/*" 21 + "storage" 22 + ], 23 + "host_permissions": [ 24 + "https://*/*", 25 + "http://*/*" 22 26 ], 23 27 "background": { 24 28 "scripts": [ 25 29 "background.js" 26 30 ] 27 31 }, 28 - "icons": {} 32 + "icons": { 33 + "16": "icons/shakespeare-icon.png", 34 + "32": "icons/shakespeare-icon.png", 35 + "48": "icons/shakespeare-icon.png", 36 + "128": "icons/shakespeare-icon.png" 37 + } 29 38 }
+1
webpack.config.js
··· 42 42 /** Mark as minimizable so HtmlMinimizerPlugin picks it up. */ 43 43 info: { minimized: false }, 44 44 }, 45 + { from: "assets/shakespeare-icon.png", to: "icons/shakespeare-icon.png" }, 45 46 ], 46 47 }), 47 48 ],