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

45
manifest.json Normal file
View file

@ -0,0 +1,45 @@
{
"manifest_version": 3,
"name": "Figma Windows UA Spoofer",
"description": "Spoof Windows User-Agent and platform on figma.com",
"version": "1.0.0",
"permissions": [
"declarativeNetRequest"
],
"host_permissions": [
"https://figma.com/*",
"https://*.figma.com/*"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"content_scripts": [
{
"matches": [
"https://figma.com/*",
"https://*.figma.com/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"injected.js"
],
"matches": [
"https://figma.com/*",
"https://*.figma.com/*"
]
}
]
}