Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Quin committed Jan 10, 2025
0 parents commit 0869d3b
Show file tree
Hide file tree
Showing 11 changed files with 3,204 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
build
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions manifest.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { defineManifest } from "@crxjs/vite-plugin";

export const manifest = defineManifest({
manifest_version: 3,
name: "MUI Firefox Debug",
description: "Bug",
version: "1.0.0",
content_scripts: [
{
matches: ["*://*/*"],
all_frames: true,
js: ["src/index.tsx"],
},
],
permissions: [],
host_permissions: ["https://*/*", "http://*/*"],
icons: {
16: "normal_16.png",
},
...{
browser_specific_settings: {
gecko: {
id: "[email protected]",
},
},
},
});
38 changes: 38 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "mui-firefox-debug",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"author": "Mr-Quin",
"repository": "",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --outDir build --emptyOutDir",
"test": "vitest",
"preview": "vite preview",
"tsc": "tsc"
},
"dependencies": {
"typescript": "^5.7.2",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.1",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@mui/system": "^6.3.0",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.26",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"vite": "^5.4.11",
"vitest": "^2.1.8"
}
}
Loading

0 comments on commit 0869d3b

Please sign in to comment.