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",
"name": "Proposi",
"author": "Samir Merrach",
"description": "Write better upwork proposals",
"manifest_version": 3,
"version": "1.0.1",
"action": [],
"icons": {
"16": "assets\/images\/16.png",
"48": "assets\/images\/48.png",
"128": "assets\/images\/128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.upwork.com\/ab\/proposals\/job\/*"
],
"js": [
"content.js"
],
"css": [
"injectedStyles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"index.html",
"assets\/*"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
]
}