-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
30 lines (29 loc) · 884 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
29
30
{
"name": "JSS Reviewer Details",
"short_name": "JSS Reviewer",
"version": "0.1.0",
"manifest_version": 2,
"description": "Loads reviewer details into the 'Submissions Under Review' table.",
"homepage_url": "http://github.com/cabird/JSS_ReviewerDetails_Extension",
"icons": {
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"permissions": [
"https://ees.elsevier.com/*"
],
"content_scripts": [
{
"matches": [ "https://ees.elsevier.com/*"],
"js": [ "src/inject/analytics.js", "js/jquery/jquery.js", "src/inject/inject.js"],
"css": ["src/inject/inject.css"],
"all_frames": true
}
],
"web_accessible_resources": ["ga.js"],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}