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": "Dice Email & Job Search",
"version": "3.0",
"description": "Extracts recruiter emails and searches for jobs on Dice.com with dynamic job categories",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
}
},
"permissions": [
"activeTab",
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"*:\/\/*.dice.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.dice.com\/job-detail\/*"
],
"js": [
"content.js"
],
"css": [
"email-styles.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"web_accessible_resources": [
{
"resources": [
"email-styles.css"
],
"matches": [
"*:\/\/*.dice.com\/*"
]
}
]
}