-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (41 loc) · 973 Bytes
/
manifest.json
File metadata and controls
41 lines (41 loc) · 973 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"manifest_version": 3,
"name": "Prime Player Tweaks",
"version": "1.0",
"description": "Enhance Amazon Prime Video player with custom modifications",
"icons": {
"16": "icons/icon_16px.png",
"32": "icons/icon_32px.png",
"48": "icons/icon_48px.png",
"128": "icons/icon_128px.png"
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"*://*.amazon.com/*",
"*://*.primevideo.com/*"
],
"content_scripts": [
{
"matches": [
"*://*.amazon.com/gp/video/*",
"*://*.primevideo.com/*"
],
"js": ["src/content/content.js"],
"css": ["src/content/styles.css"],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "src/popup/popup.html",
"default_title": "Prime Tweaks",
"default_icon": {
"16": "icons/icon_16px.png",
"32": "icons/icon_32px.png",
"48": "icons/icon_48px.png",
"128": "icons/icon_128px.png"
}
}
}