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": "__MSG_extensionName__",
"version": "0.5.6",
"description": "__MSG_extensionDescription__",
"homepage_url": "https:\/\/image.a11y.mcgill.ca",
"default_locale": "en",
"icons": {
"128": "image-icon-128.png"
},
"action": {
"default_icon": "image-icon-128.png"
},
"options_ui": {
"page": "options\/options.html",
"open_in_tab": true,
"browser_style": true
},
"permissions": [
"contextMenus",
"downloads",
"storage",
"scripting",
"offscreen",
"notifications"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"commands": {
"run-launchpad": {
"suggested_key": {
"default": "Alt+I"
},
"description": "Trigger IMAGE Launchpad"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"info\/*",
"feedback\/*",
"charts\/*",
"launchpad\/*",
"firstLaunch\/*",
"maps\/*",
"errors\/*",
"progressBar\/progressBar.html",
"audio\/*",
"offscreen.html",
"offscreen.js",
"buttons.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}