-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
60 lines (60 loc) · 1.33 KB
/
manifest.json
File metadata and controls
60 lines (60 loc) · 1.33 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
{
"manifest_version": 3,
"name": "Cursor Account Manager",
"version": "2.0",
"description": "Manage multiple Cursor accounts and switch between them easily",
"permissions": [
"cookies",
"storage",
"tabs",
"scripting",
"activeTab",
"downloads",
"sidePanel",
"webRequest"
],
"host_permissions": ["<all_urls>"],
"incognito": "split",
"action": {
"default_icon": {
"16": "icons/icon64.png",
"48": "icons/icon64.png",
"128": "icons/icon64.png"
}
},
"background": {
"service_worker": "background.js"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": ["https://*.cursor.com/*", "https://cursor.com/*"],
"js": ["content.js"],
"css": ["content.css"],
"run_at": "document_end",
"all_frames": true
},
{
"matches": ["<all_urls>"],
"js": ["auto-fill.js"],
"run_at": "document_end",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"services/console-service.js",
"services/generator.js",
"stripe.js",
"auto-fill.js",
"modules/bypass/bypass_working.js",
"modules/bypass/bypass_invoice.js",
"modules/bypass/bypass_delete_auto.js"
],
"matches": ["<all_urls>"]
}
]
}