Inspect and view changes in OneDay Gmail Extension 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": "OneDay Gmail Extension",
"description": "Capture your screen or webcam, effortlessly share your video, and track viewer engagement with OneDay!",
"version": "0.4.1",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"match_origin_as_fallback": true,
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self';"
},
"permissions": [
"scripting",
"activeTab",
"management"
],
"host_permissions": [
"https://mail.google.com/"
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"logo.png",
"inboxsdk/*",
"pageWorld.js"
]
}
],
"externally_connectable": {
"matches": [
"https://*.oneday.com/*",
"https://*.oneday-staging.com/*",
"http://localhost/*",
"https://localhost/*"
]
},
"manifest_version": 3
}