-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
91 lines (90 loc) · 2.52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "WeVote Endorsement Chrome Extension",
"version": "1.0.6.00",
"manifest_version": 3,
"description": "Highlights existing, and new opportunities, for endorsements on voter guide pages.",
"icons": {
"16": "./images/icon16.png",
"48": "./images/icon48.png",
"96": "./images/icon96.png",
"128": "./images/icon128.png"
},
"background": {
"service_worker": "./js/serviceWorker/serviceWorker.js",
"css": [
"libs/jquery-ui-modified/jquery-ui.theme-1.12.1-we-vote.css"
]
},
"action": {
"default_popup": "./js/popup/popup.html",
"default_icons": {
"16": "./images/icon16.png",
"32": "./images/icon32.png",
"48": "./images/icon48.png",
"128": "./images/icon128.png"
}
},
"permissions": [
"storage",
"contextMenus",
"tabs"
],
"host_permissions": [
"https://www.google.com/*"
],
"optional_host_permissions": [
"*://*/*"
],
"commands": {
"ScrollHighlight": {
"description": "ScrollHighlight",
"suggested_key": {
"default": "Ctrl+Shift+Space",
"mac": "Command+Shift+Space"
}
}
},
"web_accessible_resources": [
{
"resources": [
"libs/jquery/jquery-3.6.0.min.js",
"js/contentForeground/dragElement.js"
],
"matches": [
"*://*/*"
]
}
],
"content_scripts": [
{
"all_frames": true,
"css": [
"css/highlightThis.css",
"css/weVote.css",
"css/weVoteGrid.css",
"js/contentForeground/dragElement.js",
"libs/jquery-ui-modified/jquery-ui.theme-1.12.1-we-vote.css"
],
"js": [
"js/contentForeground/hilitor.js",
"js/contentForeground/tabWordHighlighter.js",
"js/contentForeground/contentWeVoteUI.js",
"js/contentForeground/dragElement.js",
"js/common/config.js",
"js/common/commonWeVote.js",
"js/common/globalState.js",
"libs/jquery/jquery-3.6.0.min.js",
"libs/jquery-ui-modified/jquery-ui-1.12.1.min-we-vote.js",
"libs/string-similarity/compare-strings.js"
],
"match_about_blank": true,
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
}
],
"update_url": "https://clients2.google.com/service/update2/crx",
"default_locale": "en"
}