Inspect and view changes in FrogHire.ai - H1B Sponsor Checker, Job Analyzer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "FrogHire.ai - H1B Sponsor Checker, Job Analyzer",
"description": "The must-have H1B/E-Verify/PERM checker for CPT/OPT/H1B job seekers.",
"version": "2.54.0",
"manifest_version": 3,
"action": {
"default_title": "Click to open panel",
"default_popup": "src/sidepanel/index.html"
},
"background": {
"service_worker": "src/background/index.js"
},
"side_panel": {
"default_path": "src/sidepanel/index.html"
},
"icons": {
"16": "assets/icon-16.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"permissions": [
"cookies",
"storage",
"tabs",
"sidePanel",
"contextMenus"
],
"host_permissions": [
"*://*/*"
],
"content_scripts": [
{
"matches": [
"*://*.linkedin.com/jobs/search*"
],
"js": [
"src/content/win.js"
],
"all_frames": false,
"run_at": "document_end",
"world": "MAIN"
},
{
"matches": [
"*://*/*"
],
"js": [
"src/content/index.js"
],
"all_frames": false,
"run_at": "document_end",
"world": "ISOLATED",
"css": [
"style.css"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}