first commit

This commit is contained in:
암냥 2026-03-05 03:06:24 +09:00
commit 46aea254d0
No known key found for this signature in database
19 changed files with 569 additions and 0 deletions

38
dist/firefox/manifest.json vendored Normal file
View file

@ -0,0 +1,38 @@
{
"manifest_version": 2,
"name": "Figma Windows UA Spoofer",
"description": "Spoof Windows User-Agent and platform on figma.com",
"version": "1.0.0",
"applications": {
"gecko": {
"id": "figma-windows-ua-spoofer@imnyang.local",
"strict_min_version": "109.0"
}
},
"permissions": [
"webRequest",
"webRequestBlocking",
"https://figma.com/*",
"https://*.figma.com/*"
],
"background": {
"scripts": [
"background.firefox.js"
]
},
"content_scripts": [
{
"matches": [
"https://figma.com/*",
"https://*.figma.com/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"injected.js"
]
}