-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
61 lines (61 loc) · 1.15 KB
/
manifest.json
File metadata and controls
61 lines (61 loc) · 1.15 KB
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
{
"name": "Solas Float",
"version": "1.0",
"description": "Sociallayer Extension",
"manifest_version": 3,
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icons/48.png",
"default_title": "Social layer",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": [
"https://*.twitter.com/*"
],
"js": [
"config.js",
"/libs/axios.min.js",
"sola.js"
],
"css": [
"sola.css"
],
"run_at": "document_start"
},
{
"matches":[
"https://social-layer-app-dev.vercel.app/*",
"https://app.sociallayer.im/*",
"http://localhost:8080/*"
],
"js": [
"login.js"
]
}
],
"permissions": [
"storage"
],
"homepage_url": "https://app.sociallayer.im/",
"web_accessible_resources": [
{
"resources": [
"/images/*",
"/icons/*"
],
"matches": [
"https://*.twitter.com/*"
]
}
]
}