Simple Screen Capture is a handy Chrome Extension that allows you to effortlessly capture full page screenshots with just a click.
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",
"version": "1.7",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"manifest_version": 3,
"permissions": [
"tabs",
"storage",
"downloads",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_title": "Simple Screen Capture",
"default_icon": {
"16": "Icons/icon16.png",
"32": "Icons/icon32.png",
"48": "Icons/icon48.png",
"128": "Icons/icon128.png"
}
},
"icons": {
"16": "Icons/icon16.png",
"32": "Icons/icon32.png",
"48": "Icons/icon48.png",
"128": "Icons/icon128.png"
},
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background/background.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"libs/jquery.min.js",
"contentScript/content.js"
]
}
]
}