Automatically accepts Faceit matches when they are ready
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Faceit Auto Accept",
"version": "1.0",
"description": "Automatically accepts Faceit matches when they are ready",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_icon": "icon48.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://www.faceit.com/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"https://www.faceit.com/*",
"storage"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}