-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
68 lines (67 loc) · 1.52 KB
/
manifest.json
File metadata and controls
68 lines (67 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"manifest_version": 3,
"name": "SAF - Stripe Auto Fill",
"version": "1.5.0",
"description": "Auto-fill Stripe forms with realistic generated data",
"permissions": [
"storage",
"activeTab",
"tabs",
"scripting",
"cookies",
"browsingData",
"notifications"
],
"host_permissions": [
"https://checkout.stripe.com/*",
"https://stripe.com/*",
"https://*.stripe.com/*",
"https://api.ipify.org/*",
"http://ip-api.com/*",
"https://cursor.com/*",
"https://*.cursor.com/*",
"https://authenticator.cursor.sh/*",
"https://*.cursor.sh/*",
"https://raw.githubusercontent.com/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"web_accessible_resources": [
{
"resources": ["translations.json"],
"matches": ["<all_urls>"]
}
],
"content_scripts": [
{
"matches": [
"https://checkout.stripe.com/*",
"https://stripe.com/*",
"https://*.stripe.com/*"
],
"js": ["dataGenerator.js", "content.js"],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": [
"https://cursor.com/*",
"https://*.cursor.com/*",
"https://authenticator.cursor.sh/*",
"https://*.cursor.sh/*"
],
"js": ["cursorRegistration.js"],
"run_at": "document_idle",
"all_frames": false
}
]
}