Inspect and view changes in My Screen Capture 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
{
"manifest_version": 2,
"name": "Simple My Screen Capture",
"version": "1.0",
"description": "Capture the currently visible part of the webpage.",
"icons": {
"48": "icons/icon-48.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icons/icon-48.png",
"default_title": "Capture Screen"
},
"permissions": [
"<all_urls>",
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{aacb213b-b3bb-4601-8a38-574f5bd96775}"
}
}
}