-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
102 lines (102 loc) · 2.94 KB
/
Copy pathmanifest.json
File metadata and controls
102 lines (102 loc) · 2.94 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"manifest_version": 3,
"name": "Ghosted",
"version": "1.1.0",
"description": "Logs every job you apply to on Handshake, Greenhouse, Lever, Workday, LinkedIn and more, and flags visa-sponsorship blockers before you apply.",
"minimum_chrome_version": "111",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2FdkRWnwz5eYe574GdhwQFHLYgP7JZr7yeNcId3dTOqKqvdQPL2mgkZ/1ZoDZ8gKxxj4YdneT26W604fg6YbRD/Y1D5/LYUcCZi00zcxvzY1IQm53jRuYfAk441WWPbBQVOqf3TkyXd+tDnAWwZAsY7CfEm2NoPt4otGKUaCIb60tBQU4BhLUvhcc7J/NFgEC5jrlt8q4sO5dQUxdri9WLMNoYNHVqfyWbs1waACdNdkxIv2k7FXX4oS+zd8qgu4mwfi3EBYU/MwOyLjvTIjNdGh5mBhLBhoSFsaAG5SlvXxVW9aa2NtWxvjNSRSzDb0NK/OM/5sCdKyxJTIz87qxwIDAQAB",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"storage",
"identity",
"contextMenus",
"alarms",
"activeTab",
"notifications",
"scripting"
],
"commands": {
"log-job": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Log the current Handshake job"
}
},
"host_permissions": [
"https://sheets.googleapis.com/",
"https://raw.githubusercontent.com/"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://*.joinhandshake.com/*",
"https://*.joinhandshake.co.uk/*",
"https://*.joinhandshake.de/*",
"https://*.greenhouse.io/*",
"https://*.lever.co/*",
"https://*.ashbyhq.com/*",
"https://*.myworkdayjobs.com/*",
"https://*.smartrecruiters.com/*",
"https://*.workable.com/*",
"https://*.linkedin.com/*",
"https://*.indeed.com/*"
],
"js": [
"content/urlwatch.js"
],
"world": "MAIN",
"run_at": "document_start"
},
{
"matches": [
"https://*.joinhandshake.com/*",
"https://*.joinhandshake.co.uk/*",
"https://*.joinhandshake.de/*",
"https://*.greenhouse.io/*",
"https://*.lever.co/*",
"https://*.ashbyhq.com/*",
"https://*.myworkdayjobs.com/*",
"https://*.smartrecruiters.com/*",
"https://*.workable.com/*",
"https://*.linkedin.com/*",
"https://*.indeed.com/*"
],
"js": [
"shared/utils.js",
"content/selectors.js",
"content/content.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_title": "Ghosted",
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"options_ui": {
"page": "app/index.html",
"open_in_tab": true
},
"oauth2": {
"client_id": "PASTE_YOUR_CLIENT_ID_HERE.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/spreadsheets"
]
}
}