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 Smart Assistant",
"version": "3.1.8",
"author": "Anton M. ([email protected])",
"description": "AI-powered UpWork assistant: smart job filtering, automated proposals, keyword highlighting. Boost your freelancing workflow.",
"permissions": [
"activeTab",
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"https:\/\/www.upwork.com\/*",
"https:\/\/uwsa.app\/*",
"https:\/\/www.uwsa.app\/*"
],
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.upwork.com\/nx\/find-work\/*",
"https:\/\/www.upwork.com\/jobs\/*",
"https:\/\/www.upwork.com\/nx\/proposals\/job\/*",
"https:\/\/www.upwork.com\/*\/apply\/*"
],
"js": [
"content-script.js"
],
"css": [
"job-scorer.css"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.upwork.com\/nx\/find-work\/*",
"https:\/\/www.upwork.com\/jobs\/*"
],
"js": [
"injector.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.upwork.com\/freelancers\/*",
"https:\/\/www.upwork.com\/fl\/*"
],
"js": [
"profile-injector.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.upwork.com\/freelancers\/*",
"https:\/\/www.upwork.com\/fl\/*"
],
"js": [
"profile-parser.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.upwork.com\/nx\/proposals\/job\/*"
],
"js": [
"proposal-generator.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.upwork.com\/nx\/find-work\/*",
"https:\/\/www.upwork.com\/jobs\/*",
"https:\/\/www.upwork.com\/nx\/proposals\/job\/*"
],
"js": [
"sidebar.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_title": "UpWork Smart Assistant",
"default_popup": "action-popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"network-interceptor.js",
"profile-interceptor.js",
"icons\/*"
],
"matches": [
"https:\/\/www.upwork.com\/*"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}