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": "Relay Developer Tools",
"description": "Adds Relay debugging tools to the Chrome Developer Tools.",
"version": "0.9.17",
"version_name": "ea7e49ef5253 (2\/3\/2025)",
"minimum_chrome_version": "88",
"icons": {
"16": "icons\/enabled16.png",
"32": "icons\/enabled32.png",
"48": "icons\/enabled48.png",
"128": "icons\/enabled128.png"
},
"action": {
"default_icon": {
"16": "icons\/disabled16.png",
"32": "icons\/disabled32.png",
"48": "icons\/disabled48.png",
"128": "icons\/disabled128.png"
},
"default_popup": "popups\/disabled.html"
},
"devtools_page": "main.html",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"main.html",
"panel.html",
"build\/*.js"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "build\/background.js"
},
"permissions": [
"webNavigation",
"scripting"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"build\/injectGlobalHook.js",
"build\/contentScript.js"
],
"run_at": "document_start"
}
],
"host_permissions": [
"<all_urls>"
]
}