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
1{
2 "name": "polyplus",
3 "description": "manifest.json description",
4 "private": true,
5 "version": "0.0.1",
6 "type": "module",
7 "scripts": {
8 "dev": "wxt",
9 "dev:firefox": "wxt -b firefox",
10 "build": "wxt build",
11 "build:firefox": "wxt build -b firefox",
12 "zip": "wxt zip",
13 "zip:firefox": "wxt zip -b firefox",
14 "compile": "tsc --noEmit",
15 "postinstall": "wxt prepare"
16 },
17 "devDependencies": {
18 "typescript": "^5.7.3",
19 "wxt": "^0.19.27"
20 },
21 "dependencies": {
22 "@webext-core/messaging": "^2.2.0",
23 "webext-storage": "^1.3.2"
24 }
25}