-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
27 lines (27 loc) · 880 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
{
"name": "Photos+",
"version": "1.0",
"manifest_version": 2,
"icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" },
"homepage_url": "https://github.com/anamritraj/google-photos-plus",
"author": "anamritraj",
"description": "An extension that allows you to download your photos stored using the Google Photos app in a better quality than default",
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"content_scripts": [
{
"matches": ["*://photos.google.com/*"],
"js": ["content.js"],
"css": ["content.css"]
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_icon": "logo.png",
"default_popup": "popup.html",
"default_title": "Photos+"
},
"permissions": ["storage", "downloads"]
}