Inspect and view changes in TurboAnimator for Google Slides 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",
"description": "Automates tedious animation tasks in Google Slides with one keypress",
"version": "0.7.5",
"manifest_version": 3,
"name": "TurboAnimator for Google Slides",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyoghRzvHCuHIBepgD+QwfbZwFFX/p0Uwe0oM5oFFETYMaTQdl6TM42N9HQH09JislgA2aqSInq6auBhiFKPSaW5X3VzorJuqTf51/yMJCGIWgfiCi9hhrAwLppD2hVbpj8hCQ+oVDSUzd0GShzCATR2CWLSuNI+mmUHT7rYfyglHCEUXk5Lm9qMMLM8uw4iCyjpX7DLwTa65r50hLULZ2mVb8QkZBwLLfh263zrvv1FoaPs7ovEA6RNdoV9qFE3AwXKrZae5tdVLQApJTUqXgePcDXCbV8VhIMX/FhAhD9mTHaXQtKDRqlSoBk81fKK+TGVAIAUuHP9URgwyyUJZpQIDAQAB",
"options_page": "options.html",
"background": {
"service_worker": "background.bundle.js"
},
"permissions": [
"storage"
],
"commands": {
"animateMain": {
"suggested_key": "Alt+A",
"description": "Add default animation to current element"
},
"animateDelete": {
"suggested_key": "Alt+Shift+D",
"description": "Delete last animation in slide"
},
"animateDeleteSelected": {
"suggested_key": "Alt+Shift+R",
"description": "Remove animations from the selected element, one at a time"
},
"animateCustom-1": {
"suggested_key": "Alt+Shift+1",
"description": "Custom animation command 1"
},
"animateCustom-2": {
"description": "Custom animation command 2"
},
"animateCustom-3": {
"description": "Custom animation command 3"
},
"animateCustom-4": {
"description": "Custom animation command 4"
},
"animateCustom-5": {
"description": "Custom animation command 5"
}
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon-128.png"
},
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https://docs.google.com/presentation/d/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"icon-128.png"
],
"matches": []
}
]
}