Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Apply Or Not?",
"version": "1.0",
"description": "Answers 'Will this company sponsor H1B?' by aggregating opinions from other job seekers in real-time.",
"icons": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"background": {
"service_worker": "scripts\/background.js"
},
"content_scripts": [
{
"js": [
"scripts\/shared.js",
"scripts\/addBadge.js",
"scripts\/requestSurvey.js",
"scripts\/addNotes.js"
],
"matches": [
"https:\/\/www.linkedin.com\/*"
]
}
],
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs",
"system.display"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
}
}
}