Inspect and view changes in GummyGrab 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": "GummyGrab",
"description": "Figma’s screenshot sidekick. Capture screenshots in Chrome and bring them into Figma without pushing a single pixel.",
"version": "1.2",
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": [
"activeTab",
"storage",
"downloads"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.min.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentscript.min.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+9",
"mac": "MacCtrl+9"
},
"description": "Activate GummyGrab"
}
},
"web_accessible_resources": [
{
"resources": [
"css/bootstrap.min.css",
"popup.min.js",
"images/*"
],
"matches": [
"<all_urls>"
]
}
]
}