diff --git a/manifest.json b/manifest.json index 701cee1..7e19909 100644 --- a/manifest.json +++ b/manifest.json @@ -1,10 +1,10 @@ { "manifest_version": 3, "name": "Pocket Llama", - "description": "Pocket Llama is a simple extension that allows you to send your current webpage to a Llama(LLM) and make it query-able.", - "version": "0.0", + "description": "Query your current webpage with Ollama", + "version": "0.1", "action": { - "default_popup": "base.html", - "default_icon": "logo.png" - } -} \ No newline at end of file + "default_popup": "src/main.html", + "default_icon": "assets/logo.png" + } +} diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..e5b64f3 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,9 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.{html,js}"], + theme: { + extend: {}, + }, + plugins: [], +} +