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": 2,
"short_name": "__MSG_name__",
"name": "__MSG_fullName__",
"description": "__MSG_description__",
"version": "0.1.2",
"default_locale": "en",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/nav-coop-sso.uottawa.ca\/*"
],
"js": [
"js\/vendor.js",
"js\/content_script.js"
],
"css": [
"content.css"
],
"all_frames": true
}
],
"background": {
"scripts": [
"js\/vendor.js",
"js\/background.js"
]
},
"permissions": [
"storage",
"activeTab"
],
"icons": {
"256": "icon.png"
}
}