Inspect and view changes in HexisPlus Screen Capturing source codes across current and past versions
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",
"name": "HexisPlus Screen Capturing",
"short_name": "HexisPlus",
"author": "Chris Jones",
"version": "2",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "This app allows you to use Chrome to record your screen for the use as training or marketing materials.",
"homepage_url": "https://hexisplus.com/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https://*/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
}