-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.json
75 lines (60 loc) · 2.29 KB
/
module.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"title": "Amazon Video",
"content_scripts": [
{
"id": "main",
"conditions": [
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/b" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/b/.*" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/.*/b" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/dp/.*" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/.*/dp/.*" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/gp/product/.*" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/gp/video/detail/.*" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/gp/video/library" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/gp/video/library/.*" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/gp/video/storefront" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/gp/video/storefront/.*" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/gp/video/watchlist" } },
{ "pageUrl": { "originAndPathMatches": ".*://www\\.amazon\\.com/gp/video/watchlist/.*" } }
],
"matches": [
"*://www.amazon.com/b?*",
"*://www.amazon.com/b/*",
"*://www.amazon.com/*/b?*",
"*://www.amazon.com/dp/*",
"*://www.amazon.com/*/dp/*",
"*://www.amazon.com/gp/product/*",
"*://www.amazon.com/gp/video/detail/*",
"*://www.amazon.com/gp/video/library",
"*://www.amazon.com/gp/video/library/*",
"*://www.amazon.com/gp/video/storefront",
"*://www.amazon.com/gp/video/storefront/*",
"*://www.amazon.com/gp/video/watchlist",
"*://www.amazon.com/gp/video/watchlist/*"
],
"js": [
"Common.js",
"Plugins/Common.js",
"Plugins/amazonvideo/Main.js"
]
}
],
"services": [
"Configuration",
"Source:Activity"
],
"origins": [
"*://amazon.com/*",
"*://www.amazon.com/*",
"*://atv-ps.amazon.com/*"
],
"web_accessible_resources": [
"Plugins/amazonvideo/Shim.js"
],
"webpack": {
"modules": {
"Shim": { "entry": true }
}
}
}