-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.json
53 lines (53 loc) · 1.44 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
51
52
53
{
"name": "Google Photos Sorter By Name",
"homepage_url": "https://github.com/hamada2029/gphotos_sort#google-photos-sort-by-name",
"version": "0.28",
"manifest_version": 3,
"description": "Sort album by name for Google photos.",
"background": {
"service_worker": "background.js"
},
"icons":{
"16" : "i16.png",
"48" : "i48.png",
"128" : "i128.png"
},
"content_scripts":[
{
"matches": [
"https://photos.google.com/*",
"https://photos.google.com/album/*",
"https://photos.google.com/share/*",
"https://photos.google.com/u/*/album/*",
"https://photos.google.com/u/*/share/*"
],
"js": [
"lib/rq.js",
"lib/numRep.js",
"lib/send_msg.js",
"lib/Gui.js",
"lib/Album.js",
"lib/Sorter.js",
"content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16" : "i16.png",
"48" : "i48.png",
"128" : "i128.png"
},
"default_title": "Google Photos Album Sort"
},
"permissions": [
"tabs"
],
"web_accessible_resources": [
{
"resources": ["content2.js"],
"matches": ["https://photos.google.com/*"]
}
]
}