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": "Upwork Job Tracker",
"version": "2.5.1",
"description": "A simple, efficient tool that searches and captures targeted Upwork jobs based on your preferences.",
"permissions": [
"activeTab",
"storage",
"alarms",
"notifications"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.upwork.com\/nx\/search\/jobs\/*"
],
"js": [
"cache-utility.js",
"indexeddb-storage.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\/*",
"https:\/\/jabdesk.com\/*"
],
"options_page": "settings.html",
"web_accessible_resources": [
{
"resources": [
"settings.html",
"indexeddb-storage.js"
],
"matches": [
"https:\/\/www.upwork.com\/*"
]
}
]
}