Inspect and view changes in Screen Capture - full page 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": "Screen Capture - full page",
"version": "4.1.2",
"manifest_version": 3,
"description": "Screen capture your current page in entirety and reliably!",
"action": {
"default_icon": "icon-999.png",
"default_popup": "popup.html"
},
"background.service_worker": {
"scripts": [
"jquery.min.js",
"moment.min.js",
"lodash.min.js"
]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+P"
}
}
},
"permissions": [
"activeTab",
"tabs",
"scripting",
"storage"
],
"optional_permissions": [
"unlimitedStorage"
],
"host_permissions": [
"http://*/",
"https://*/",
"*://*/*"
],
"icons": {
"16": "icon16-999.png",
"48": "icon48-999.png",
"128": "icon128-999.png"
},
"-ms-preload": {
"backgroundScript": "backgroundScriptsAPIBridge.js",
"contentScript": "contentScriptsAPIBridge.js"
}
}