Inspect and view changes in Shakebug: Report a bug in seconds 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",
"manifest_version": 3,
"name": "Shakebug: Report a bug in seconds",
"description": "Report a bug in website by screenshot or recording screen.",
"version": "1.0.7",
"permissions": [
"activeTab",
"tabs",
"storage",
"scripting",
"desktopCapture"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "Activate the extension"
},
"capture_visible_screen": {
"suggested_key": {
"default": "Ctrl+Shift+V",
"mac": "Command+Shift+V"
},
"description": "Capture visible screen"
},
"capture_cropped_area": {
"suggested_key": {
"default": "Ctrl+Shift+Q",
"mac": "Command+Shift+Q"
},
"description": "Capture cropped area"
},
"capture_full_screen": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
},
"description": "Capture full screen"
}
},
"web_accessible_resources": [
{
"resources": [
"capturedScreen.html",
"capturedScreen.js",
"recording.html",
"recording.js"
],
"matches": [
"<all_urls>"
]
}
]
}