A rewrite of Poly+, my quality-of-life browser extension for Polytoria. Built entirely fresh using the WXT extension framework, Typescript, and with added better overall code quality.
extension
1import { defineConfig } from 'wxt';
2
3export default defineConfig({
4 manifestVersion: 3, // Firefox MV3 is not supported by WXT
5 browser: "chrome",
6 manifest: {
7 permissions: [
8 "https://*.polytoria.com/*",
9 "storage"
10 ],
11 browser_specific_settings: {
12 gecko: {
13 id: "index.business.purposes@gmail.com"
14 }
15 }
16 },
17 runner: {
18 chromiumArgs: ["--user-data-dir=./.wxt/chrome-data"]
19 }
20});