akemi/tailwind #1
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Pocket Llama",
|
"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.",
|
"description": "Query your current webpage with Ollama",
|
||||||
"version": "0.0",
|
"version": "0.1",
|
||||||
"action": {
|
"action": {
|
||||||
"default_popup": "base.html",
|
"default_popup": "src/main.html",
|
||||||
"default_icon": "logo.png"
|
"default_icon": "assets/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
9
tailwind.config.js
Normal file
9
tailwind.config.js
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
/** @type {import('tailwindcss').Config} */
|
||||||
|
module.exports = {
|
||||||
|
content: ["./src/**/*.{html,js}"],
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
plugins: [],
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue