-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (33 loc) · 784 Bytes
/
manifest.json
File metadata and controls
34 lines (33 loc) · 784 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
{
"name": "Linkedin Profile Changer",
"description": "this extension allows you set all the profile picture of the home page to your desired picture",
"version": "1.0.0",
"manifest_version": 3,
"author": "mdyusuf2521@gmail.com",
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/feed/"
],
"js": [
"content.js"
]
}
],
"permissions": [
"activeTab"
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"64":"icon.png"
},
"action": {
"default_popup": "./popup/index.html"
},
"externally_connectable": {
"matches": [
"https://www.linkedin.com/feed/"
]
}
}