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,
"default_locale": "en",
"name": "Upwork to ClickUp",
"description": "Send Upwork leads to ClickUp",
"version": "1.0.0",
"author": "Nick Kadutskyi",
"icons": {
"64": "images\/icon-64.png",
"128": "images\/icon-128.png",
"256": "images\/icon-256.png",
"512": "images\/icon-512.png"
},
"background": {
"service_worker": "dist\/background.js"
},
"content_scripts": [
{
"js": [
"dist\/content.js"
],
"matches": [
"*:\/\/*.upwork.com\/*"
]
}
],
"options_ui": {
"page": "dist\/index.html",
"browser_style": true,
"open_in_tab": true
},
"action": {
"default_icon": {
"48": "images\/[email protected]"
}
},
"permissions": [
"storage",
"contextMenus",
"tabs"
],
"host_permissions": [
"https:\/\/api.clickup.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"\/images\/cl-icon.png"
],
"matches": [
"*:\/\/*.upwork.com\/*"
]
}
]
}