-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
25 lines (25 loc) · 933 Bytes
/
Copy pathmanifest.json
File metadata and controls
25 lines (25 loc) · 933 Bytes
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
{
"manifest_version": 3,
"name": "Suno Auto Prompt Queue",
"version": "1.3.0",
"description": "Вставте список промптів — розширення саме підставляє їх у поле Styles на suno.com/create і тисне Create, з випадковою паузою в заданому діапазоні секунд (або вручну по кнопці Next).",
"permissions": ["storage", "alarms", "tabs", "scripting", "sidePanel"],
"host_permissions": ["https://suno.com/*"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Suno Auto Queue — клік відкриває бічну панель"
},
"side_panel": {
"default_path": "popup.html"
},
"content_scripts": [
{
"matches": ["https://suno.com/create*"],
"js": ["content.js"],
"run_at": "document_idle",
"all_frames": false
}
]
}