From 131d5ca58eb787e6b4c64530f6e000dc1ccbc971 Mon Sep 17 00:00:00 2001 From: Akemi Izuko Date: Sun, 3 Mar 2024 00:29:50 -0700 Subject: [PATCH] Bump version --- manifest.json | 12 ++++++------ tailwind.config.js | 9 +++++++++ 2 files changed, 15 insertions(+), 6 deletions(-) create mode 100644 tailwind.config.js 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: [], +} +