generated from raleighlittles/Chrome-Lemon8-Post-Downloader
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
28 lines (28 loc) · 791 Bytes
/
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
{
"manifest_version": 3,
"name": "AMC A-List Showtimes filterer",
"description": "Filters showtimes on the AMC Theaters website if they're excluded from A-List",
"author": "Raleigh Littles",
"homepage_url": "https://github.com/raleighlittles/Chrome-AMC-AList-Filter",
"version": "0.1",
"content_scripts": [
{
"matches": [
"https://www.amctheatres.com/movies/*",
"https://www.amctheatres.com/movie-theatres/*"
],
"js": ["content.js"],
"run_at": "document_end"
}
],
"icons": { "48": "icons/icon256.png",
"128": "icons/icon512.png"},
"background": {
"service_worker": "background.js"
},
"action": {},
"permissions": [
"activeTab",
"tabs"
]
}