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": "WorkPilot - Upwork Proposal Assistant",
"version": "0.2.0",
"description": "Streamline your Upwork workflow with AI-powered proposals, job management, and organized tracking. Save time, win more clients.",
"icons": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"action": {
"default_icon": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
}
},
"side_panel": {
"default_path": "side-panel\/side-panel.html"
},
"background": {
"service_worker": "background\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.upwork.com\/jobs\/*"
],
"js": [
"content-scripts\/job-extractor.js"
]
},
{
"matches": [
"https:\/\/www.upwork.com\/nx\/proposals\/job\/*"
],
"js": [
"content-scripts\/application-extractor.js"
]
},
{
"matches": [
"https:\/\/www.upwork.com\/*"
],
"js": [
"content-scripts\/floating-icon.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/www.upwork.com\/nx\/find-work\/*"
],
"js": [
"content-scripts\/job-list-extractor.js"
]
}
],
"permissions": [
"storage",
"sidePanel",
"activeTab",
"windows",
"scripting"
],
"host_permissions": [
"https:\/\/www.upwork.com\/*"
],
"author": "AvanSaber Inc",
"homepage_url": "https:\/\/www.avansaber.com"
}