Skip to content

Commit

Permalink
Remove some unused perms
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyfallWasTaken committed Dec 19, 2024
1 parent 9725bdc commit ded4e1c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions wxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import { defineConfig } from "wxt";
// See https://wxt.dev/api/config.html
export default defineConfig({
srcDir: "src",
modules: ['@wxt-dev/auto-icons'],
modules: ["@wxt-dev/auto-icons", "@wxt-dev/module-svelte"],
manifest: {
name: "WakaTime for Figma",
version: "1.0.0",
description:
"Metrics, insights, and time tracking automatically generated from your Figma activity.",
permissions: ["storage", "scripting", "tabs", "activeTab", "cookies"], // FIXME: reduce perms
permissions: ["storage", "activeTab", "cookies"],
host_permissions: ["<all_urls>"],
web_accessible_resources: [
{
Expand All @@ -18,6 +18,5 @@ export default defineConfig({
},
],
},
extensionApi: "chrome",
modules: ["@wxt-dev/module-svelte"],
extensionApi: "chrome"
});

0 comments on commit ded4e1c

Please sign in to comment.