Inspect and view changes in Simplehuman, keyboard shortcuts and command bar for Gmail 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": "Keyboard shortcuts and command bar for Gmail",
"version": "34.1.4",
"manifest_version": 3,
"name": "Simplehuman, keyboard shortcuts and command bar for Gmail",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoq2r+9oZeTw+6dnpHKf+f8BXF43ssOz73Ea5C+b86/b3xTesNAoss0GPPbnaqYD41vjbv1kksDt0HyMQX/43pLRSfURLYMh1QUXfakC3NXQngv0hOtQZEABN7NAkiLhpjUAIpaQw+OqyQzYMWl/WIPF4fdr3BuHyQLp+wgFF7zkxufVbwEWMVvgu2d8oLew1zFwt/NT3i3OmSGZRYxeOz938zaNUqH4fDkJnlqghVDmvzTcHP2+6WktBRH8SOC7s4oRjoj1VZcZYQznc9RVk45LNQRFEJrwhHKzc/dedPSbxLa5Ed2GLbdsVIwP7RtDj/HqvmXOCi6fE5cb2Ix48iwIDAQAB",
"permissions": [
"storage",
"tabs",
"identity",
"identity.email",
"background",
"alarms"
],
"host_permissions": [
"*://mail.google.com/*",
"*://accounts.google.com/*",
"*://apis.google.com/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; connect-src 'self' ws://localhost:3000 wss://localhost:3000 http://localhost:3000 https://localhost:3000 https://*.firebaseio.com https://*.firebase.googleapis.com https://firestore.googleapis.com https://apis.google.com https://identitytoolkit.googleapis.com https://securetoken.googleapis.com https://www.googleapis.com https://*.cloudfunctions.net https://oauth2.googleapis.com https://api.mixpanel.com https://api-js.mixpanel.com https://decide.mixpanel.com https://accounts.google.com/o/oauth2/revoke"
},
"oauth2": {
"client_id": "997398064300-vskmo6aq7o61ggt53ntaufpd60jcqijg.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"background": {
"service_worker": "background.bundle.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": "./assets/img/icon-34.png"
},
"icons": {
"128": "./assets/img/icon-128.png"
},
"content_scripts": [
{
"matches": [
"*://mail.google.com/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"public/auth-test.html",
"public/auth-test.js"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
]
}