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 Modern Workflow \u2014 Review Jobs Faster with a 3-Column Layout",
"version": "7.0.0",
"description": "Help freelancers win more Upwork jobs with smart alerts, AI cover letters, and quick applies before 5 proposals.",
"background": {
"service_worker": "background.js"
},
"permissions": [
"notifications",
"activeTab",
"scripting",
"storage",
"alarms"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js\/jquery-3.6.0.min.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.upwork.com\/nx\/find-work\/*"
],
"js": [
"content.js",
"write_job_letter.js",
"findwork_layout.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.upwork.com\/nx\/search\/jobs\/*"
],
"js": [
"search_jobs_content.js",
"write_job_letter.js",
"search_jobs.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.upwork.com\/ab\/messages\/rooms\/*"
],
"js": [
"messages.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/chatgpt.com\/*"
],
"js": [
"chatgpt.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "images\/icon-16x.png",
"48": "images\/icon-48x.png",
"128": "images\/icon-128x.png"
},
"action": {
"default_popup": "login.html",
"default_icon": {
"16": "images\/icon-16x.png",
"48": "images\/icon-48x.png",
"128": "images\/icon-128x.png"
}
},
"externally_connectable": {
"matches": [
"*:\/\/*\/*"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}