Inspect and view changes in Ottoclip 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": "Ottoclip",
"short_name": "Ottoclip",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtUNcH6xcltI20SBk7N4fWhJz+xdK13F5dwMKhsbiAGpwzSGfMrTGkQolw+lS5JmZYExz2D8G5t8ycmP+tCAQjnpJjE6gzA3Nz0uulKjhcsCSOlqP+q53qSwHLwyf9H+6CbiRNbVkESd4C4A8IAn0bAHmDn7MM4xBzY7HE6BT+pztjIiSx95kb+WP+D64JJROAfAsKMqjo2QYLohgO1aj8b6WCfiA31c75w7SfgNlrF84c20hWnliqNZcr3RtnCMC9t5LHsUt4JVTTd3Omi0uyl3mC+xHHWZU025ydyehSM4HK1/9w0J+/DLOYCiQmxn8bgQ2H4kNgGQCqByRUUDOVQIDAQAB",
"version": "1.0.18",
"manifest_version": 3,
"description": "Create engaging narrated videos, interactive demos, and guided walkthroughs that stays up-to-date.",
"permissions": [
"cookies",
"offscreen",
"sidePanel",
"storage",
"tabCapture",
"tabs",
"webNavigation",
"webRequest"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"externally_connectable": {
"matches": [
"*://*.ottoclip.com/*"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*://*.ottoclip.com/extension/*"
],
"css": [
"css/ottoclip.css"
],
"js": [
"js/ottoclipBrowser.js"
],
"all_frames": true,
"match_about_blank": false,
"match_about_srcdoc": false,
"run_at": "document_start",
"type": "module"
}
],
"web_accessible_resources": [
{
"resources": [
"js/ottoclipOverrides.js",
"js/ottoclipOverridesRemove.js",
"*.js.map"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "img/ottoclip_icon_16.png",
"32": "img/ottoclip_icon_32.png",
"48": "img/ottoclip_icon_48.png",
"128": "img/ottoclip_icon_128.png"
},
"action": {
"default_title": "Ottoclip"
},
"side_panel": {
"default_title": "Ottoclip",
"default_path": "sidePanel.html"
}
}