-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
42 lines (42 loc) · 1.07 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
{
"name": "AWS Simple Monthly Pricing",
"version": "1.0.0",
"description": "Adds monthly prices to various AWS pricing pages by multiplying by 30.5 days (~732 hrs, same as simple monthly calculator).",
"manifest_version": 2,
"content_scripts": [
{
"js": [
"jquery-2.0.2.min.js",
"content-script.js"
],
"matches": [
"https://aws.amazon.com/ec2/pricing/on-demand/*",
"https://aws.amazon.com/redshift/pricing/*",
"https://aws.amazon.com/elasticsearch-service/pricing/*"
]
},
{
"js": [
"jquery-2.0.2.min.js",
"aurora.js"
],
"matches": [
"https://aws.amazon.com/rds/aurora/pricing/"
]
},
{
"js": [
"jquery-2.0.2.min.js",
"non-price-per-hour.js"
],
"matches": [
"https://aws.amazon.com/rds/*/pricing/",
"https://aws.amazon.com/elasticache/pricing/*",
"https://aws.amazon.com/sagemaker/pricing/*"
],
"exclude_matches": [
"https://aws.amazon.com/rds/aurora/pricing/"
]
}
]
}