Don't get distracted by unread emails. Hide and show your labels within Gmail.
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": "Gmail Label Toggler",
"version": "1.0.1",
"manifest_version": 2,
"description": "Don't get distracted by unread emails. Hide and show your labels within Gmail.",
"homepage_url": "http://www.nicolasritz.com/?utm_source=chrome%20store&utm_medium=referral&utm_campaign=gmail%20toggler",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src/bg/background.html",
"persistent": false
},
"page_action": {
"default_icon": "icons/icon19.png",
"default_title": "page action demo",
"default_popup": "src/page_action/page_action.html"
},
"permissions": [
"https://mail.google.com/*"
],
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"src/inject/inject.js",
"js/jquery/jquery.min.js"
]
}
]
}