Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 20, 2025.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Upwork Job Tracker",
"version": "2.2.2",
"description": "A simple, efficient tool that searches and captures targeted Upwork jobs based on your preferences every minute.",
"permissions": [
"activeTab",
"storage",
"alarms",
"notifications"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.upwork.com\/nx\/search\/jobs\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"host_permissions": [
"https:\/\/www.upwork.com\/nx\/search\/jobs\/*",
"https:\/\/www.upwork.com\/jobs\/*"
],
"options_page": "settings.html",
"web_accessible_resources": [
{
"resources": [
"settings.html"
],
"matches": [
"https:\/\/www.upwork.com\/*"
]
}
]
}