Bump version

This commit is contained in:
Akemi Izuko 2024-03-03 00:29:50 -07:00
parent 0ae6b2ddf3
commit 131d5ca58e
Signed by: akemi
GPG key ID: 8DE0764E1809E9FC
2 changed files with 15 additions and 6 deletions

View file

@ -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"
}
}
"default_popup": "src/main.html",
"default_icon": "assets/logo.png"
}
}

9
tailwind.config.js Normal file
View file

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}