blob: 78ce8d184129f17ce6611b57428bb602e934f575 [file]
{
"name": "Dart Debug Extension",
"version": "2.1",
"manifest_version": 2,
"devtools_page": "static_assets/devtools.html",
"browser_action": {
"default_icon": "static_assets/dart_grey.png"
},
"externally_connectable": {
"ids": ["nbkbficgbembimioedhceniahniffgpl"],
"matches": [
"https://cider.corp.google.com/*",
"https://cider-staging.corp.google.com/*",
"https://cider-test.corp.google.com/*",
"https://cider-v.corp.google.com/*",
"https://cider-v-staging.corp.google.com/*",
"https://cider-v-test.corp.google.com/*"
]
},
"permissions": ["debugger", "notifications", "storage", "webNavigation"],
"background": {
"scripts": ["background.dart.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["detector.dart.js", "copier.dart.js"],
"run_at": "document_end"
}
],
"commands": {
"copyAppId": {
"suggestedKey": {
"default": "Ctrl+Shift+7",
"mac": "Command+Shift+7"
},
"description": "Copy the app ID"
}
},
"web_accessible_resources": ["debug_info.dart.js"]
}