Repeek enhances your experience on FACEIT and adds useful features (This version is outdated! Get the latest version from our website)
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Repeek (formerly FACEIT Enhancer)",
"description": "Repeek enhances your experience on FACEIT and adds useful features",
"version": "4.3.13",
"manifest_version": 3,
"homepage_url": "https://repeek.gg",
"browser_specific_settings": {
"gecko": {
"id": "{e6fc2bbd-183e-4518-9ea5-04a8a913ab00}",
"strict_min_version": "114.0"
}
},
"permissions": [
"storage",
"notifications",
"clipboardWrite",
"scripting"
],
"host_permissions": [
"https://api.faceit.com/*"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://www.faceit.com/*"
],
"js": [
"content.js"
],
"css": [
"fonts.css"
]
}
],
"action": {
"default_icon": "icon48.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"optional_permissions": [
"https://beta.faceit.com/*"
]
}