Inspect and view changes in GMail Label Switch Shortcuts 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
{
"name": "GMail Label Switch Shortcuts",
"short_name": "GMail Label Keys",
"author": "Michael Sloan",
"description": "Adds keyboard shortcuts to GMail that select next and previous labels.",
"version": "6",
"homepage_url": "https://github.com/mgsloan/gmail-label-switch-shortcuts",
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"inject.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"gmail-label-switch-shortcuts.js"
],
"matches": [
"https://mail.google.com/*"
]
}
],
"icons": {
"128": "icon128.png"
},
"action": {
"default_icon": {
"128": "icon128.png"
}
},
"content_security_policy": {
"script-src": "'self'"
},
"browser_specific_settings": {
"gecko": {
"id": "{f68acaa5-759e-4fcb-ad68-e4c2751857dd}",
"strict_min_version": "109.0"
}
},
"manifest_version": 3
}