first commit
This commit is contained in:
commit
46aea254d0
19 changed files with 569 additions and 0 deletions
45
manifest.json
Normal file
45
manifest.json
Normal 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/*"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue