-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
50 lines (50 loc) · 1.18 KB
/
manifest.json
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
{
"manifest_version": 3,
"name": "Basuki",
"version": "2.0.0",
"description": "Basuki is a Chrome extension designed to help developers intercept and modify API requests in real time. This tool allows you to dynamically replace parts of URLs in API requests, making it ideal for debugging and local development environments where you want to redirect live API calls to a local server.",
"permissions": [
"storage",
"unlimitedStorage",
"notifications",
"contextMenus",
"cookies",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/content.client.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"scripts/basuki.intercept.js"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"128": "images/icon_disabled.png"
},
"host_permissions": [
"*://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; script-src-elem 'self'; object-src 'self';"
}
}