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 Job Apply In a Moment: Quick Copy Tool",
"version": "3.0",
"description": "Easily copy job titles, descriptions, and skills from Upwork job listings with one click, and append your custom text.",
"permissions": [
"activeTab",
"clipboardWrite",
"storage",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.upwork.com\/jobs\/*"
],
"js": [
"contentScript.js"
]
}
],
"commands": {
"copy_job_data": {
"suggested_key": {
"default": "Ctrl+Shift+S"
},
"description": "Easily copy job titles, descriptions, and skills from Upwork job listings with one click, and append your custom text."
}
}
}