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": "AI Upwork Proposal Generator Bot",
"version": "1.0.2",
"description": "An AI-powered Upwork proposal bot for freelancers to effortlessly generate winning project proposals.",
"permissions": [
"tabs",
"scripting",
"clipboardWrite"
],
"icons": {
"16": ".\/images\/icon16x16.png",
"48": ".\/images\/icon48x48.png",
"128": ".\/images\/icon128x128.png"
},
"action": {
"default_popup": ".\/popup\/popup.html",
"default_icon": {
"16": ".\/images\/icon16x16.png",
"48": ".\/images\/icon48x48.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.upwork.com\/*"
],
"js": [
"index.js"
]
}
],
"background": {
"service_worker": "index.js"
},
"host_permissions": [
"https:\/\/www.upwork.com\/nx\/find-work\/best-matches",
"https:\/\/*.google.com\/"
]
}