-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (32 loc) · 910 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": "Filter Jobs Feeds",
"description": "A browser extension for filtering jobs feeds by blacklisting text",
"icons": { "128": "assets/filterJobsFeeds.png" },
"version": "1.11.2",
"permissions": ["storage"],
"action": {
"default_popup": "settings/opener/opener.html"
},
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/jobs/search*",
"https://www.linkedin.com/jobs/collection*",
"https://www.linkedin.com/jobs/jobs-in-*",
"https://www.indeed.com/",
"https://www.indeed.com/?from=*",
"https://www.indeed.com/jobs*",
"https://wellfound.com/jobs"
],
"js": ["main/main.js"],
"css": ["shared/vars.module.css", "main/main.css"]
}
],
"author": "Eve Aviv Keinan",
"manifest_version": 3,
"browser_specific_settings": {
"gecko": {
"id": "evavkein@gmail.com"
}
}
}