blob: 97769605eed69adde43e0c5342d4822aeec64c12 [file] [log] [blame]
{
"manifest_version": 2,
"name": "User ALE Extension",
"version": "2.0.0",
"description": "Injects UserALE.js into every page for testing & user research purposes",
"icons": {
"48": "icons/border-48.png"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"<all_urls>"
],
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["content.js"]
}
],
"options_ui": {
"page": "optionsPage.html"
}
}