Helps your teacher maintain a great learning environment.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"background": {
"scripts": [
"/js/base64.js",
"/js/tabThumbnail.js",
"/js/ParseURL.js",
"/js/heartbeat.js",
"/js/urlRegex.js",
"/js/appWakeup.js",
"/js/port.js",
"/js/validateAppFromServer.js",
"/js/logger.js",
"/js/background.js"
]
},
"web_accessible_resources": [
"/style.css",
"/blocked.html"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"description": "__MSG_plugindescription__",
"manifest_version": 2,
"default_locale": "en",
"offline_enabled": true,
"name": "__MSG_packageName__",
"permissions": [
"tabs",
"activeTab",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"incognito": "spanning",
"version": "8.0.2.5",
"browser_action": {
"default_icon": "/blank.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/js/configstudent.js"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"/js/pip.js"
]
},
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_start",
"js": [
"/js/kl.js"
]
}
],
"icons": {
"16": "/icon16.png",
"48": "/icon48.png",
"128": "/icon128.png"
},
"commands": {
"check-state": {
"suggested_key": {
"default": "Alt+Shift+Home",
"mac": "Alt+Shift+Home",
"windows": "Alt+Shift+Q"
},
"description": "Send a 'check-state' event"
}
}
}