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": "Proposal AI",
"description": "Create coverletter for upwork jobs, powered by ChatGPT",
"version": "1.1",
"icons": {
"16": "16x16.png",
"32": "32x32.png",
"48": "48x48.png",
"128": "128x128.png"
},
"web_accessible_resources": [
{
"resources": [
"\/*"
],
"matches": [
"*:\/\/www.upwork.com\/*"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_icon": {
"16": "16x16.png",
"32": "32x32.png",
"48": "48x48.png",
"128": "128x128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.upwork.com\/*"
],
"include_globs": [
"*:\/\/www.upwork.com\/ab\/proposals\/job\/*\/apply\/*"
],
"js": [
"js\/jquery.js",
"js\/vendor.js",
"js\/content_script.js"
]
}
],
"permissions": [
"storage"
],
"background": {
"service_worker": "js\/background.js"
}
}