Skip to content

Instantly share code, notes, and snippets.

@kltdwrds
Created November 16, 2021 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kltdwrds/34e32591941c454f5d18ef6cf93d2d8e to your computer and use it in GitHub Desktop.
Save kltdwrds/34e32591941c454f5d18ef6cf93d2d8e to your computer and use it in GitHub Desktop.
BrightHire manifest.json
{
"action": {
"default_icon": "icon-128x128.png"
},
"background": {
"service_worker": "backgroundWrapper.js"
},
"content_scripts": [ {
"js": [ "greenhouseSchedulerContentScript.js" ],
"matches": [ "https://*.greenhouse.io/interviews/scheduler?*", "https://*.greenhouse.io/interviews/scheduler/legacy?*" ],
"run_at": "document_start"
}, {
"js": [ "greenhouseCandidateContentScript.js" ],
"matches": [ "https://*.greenhouse.io/people/*" ],
"run_at": "document_start"
}, {
"css": [ "drawerContentScript.css" ],
"js": [ "drawerContentScript.js" ],
"matches": [ "https://*.greenhouse.io/guides/*/people/*", "https://*.greenhouse.io/people/*", "https://*.greenhouse.io/scorecards/*", "https://hire.lever.co/interviews/*" ],
"run_at": "document_start"
}, {
"css": [ "drawerContentScript.css" ],
"js": [ "drawerContentScript.js", "leverOpportunityContentScript.js" ],
"matches": [ "https://hire.lever.co/candidates*" ],
"run_at": "document_start"
}, {
"js": [ "googleCalendarContentScript.js" ],
"matches": [ "https://calendar.google.com/calendar/*" ],
"run_at": "document_start"
} ],
"description": "The BrightHire chrome extension makes BrightHire even easier to use.",
"externally_connectable": {
"matches": [ "https://*.brighthire.ai/*", "https://brighthire-kyle.ngrok.io/*", "https://localhost:3000/*" ]
},
"host_permissions": [ "https://*.brighthire.ai/*", "https://brighthire-kyle.ngrok.io/*", "https://localhost:3000/*" ],
"icons": {
"128": "icon-128x128.png",
"16": "icon-16x16.png",
"48": "icon-48x48.png"
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnbu9tlpBB1EO2EpL7XFbS9FwwkqaDRavASvXvkrjXWnreHgyflEoSwAQJTWFYRsgqASEeSqUr9raHKKiNTFfHMqd9OzlN7sgOFudJgwidOWqDoDja0hANl08NMZ9PWR+5khu5lLeW2eC06t2zZJDM0qz/IcoBDjLMEbDYll84LVqq6+bKnH9k1caSXGcoibMyh2SIKL/zhAd9+EYLXQ5oPTDLblgbimQrCY47EDYwtx9gQTTygrqjywMcO9opb65kvYwYbcgO0aVIh2BT2ogjuXNnuA55wuZtjNqt7tPtDG+NB4pDW6h0qniDG0MvuK6MIdvvq/1ajGf/976UweFOwIDAQAB",
"manifest_version": 3,
"name": "BrightHire (Beta)",
"permissions": [ "tabs" ],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "2.1.22",
"version_name": "v2.1.22-beta",
"web_accessible_resources": [ {
"extension_ids": [ ],
"matches": [ "*://*/*" ],
"resources": [ "toast.html", "drawer.html" ]
} ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment