-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (40 loc) · 974 Bytes
/
Copy pathmanifest.json
File metadata and controls
41 lines (40 loc) · 974 Bytes
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
{
"manifest_version": 3,
"name": "Yal§",
"version": "2.2.2",
"description": "Simple LinkedIn Profile scraping extension",
"icons": {
"128": "Y.png"
},
"permissions": [
"storage",
"tabs",
"identity",
"downloads"
],
"host_permissions": [
"https://www.linkedin.com/*"
],
"background": {
"service_worker": "scripts/events.js"
},
"action": {
"default_title": "yale3"
},
"content_scripts": [
{
"matches": ["https://*.linkedin.com/*"],
"css": ["css/content.css"],
"js": [
"scripts/selectors.js",
"scripts/content.js"
],
"type": "module"
}
],
"web_accessible_resources": [{
"resources": ["config.json", "views/slider.html"],
"matches": ["<all_urls>"]
}],
"homepage_url": "https://github.com/KartikayKaul/Yale3"
}