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,
"name": "Code Self Study",
"short_name": "codeselfstudy",
"description": "A browser extension for Code Self Study (codeselfstudy.com)",
"version": "0.8.3",
"icons": {
"64": "icons\/icon.png"
},
"permissions": [
"*:\/\/*.codeselfstudy.com\/*",
"activeTab"
],
"background": {
"scripts": [
"vendor\/browser-polyfill.js",
"background_script.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"vendor\/browser-polyfill.js",
"content_script.js"
]
}
],
"browser_action": {
"default_icon": {
"64": "icons\/icon.png"
},
"default_popup": "browserAction\/index.html",
"default_title": "Code Self Study"
},
"options_ui": {
"page": "options\/index.html"
}
}