-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
37 lines (37 loc) · 1007 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
31
32
33
34
35
36
37
{
"name": "Social Media Stonks",
"description": "Get top social media posts about stonks in a useful chrome extension!",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": ["storage", "activeTab", "scripting", "tabs"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/logo16.png",
"32": "/images/logo32.png",
"48": "/images/logo48.png",
"128": "/images/logo128.png"
}
},
"icons": {
"16": "/images/logo16.png",
"32": "/images/logo32.png",
"48": "/images/logo48.png",
"128": "/images/logo128.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches":["https://www.google.com/search*"],
"js":["wrapperScript.js"],
"css":["style.css"]
}
],
"web_accessible_resources": [{
"resources": [ "images/*", "reddit.js", "twitter.js", "cscript.js"],
"matches":["https://www.google.com/search*"]
}]
}