View your Gmail in a panel within Google Chrome.
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": "Panel Extension For Gmail",
"description": "View your Gmail in a panel within Google Chrome.",
"version": "0.1",
"background": {
"scripts": [
"js/background.js",
"js/events.js",
"js/contextmenu.js"
]
},
"browser_action": {
"default_icon": "img/icon_128.png"
},
"options_page": "options.html",
"icons": {
"16": "img/icon_16.png",
"48": "img/icon_48.png",
"128": "img/icon_128.png"
},
"permissions": [
"tabs",
"storage",
"contextMenus",
"https://mail.google.com/mail/mu/*"
],
"content_scripts": [
{
"all_frames": false,
"css": [
"css/contentstyle.css"
],
"js": [
"js/contentscript.js"
],
"matches": [
"https://mail.google.com/mail/mu/*"
],
"run_at": "document_end"
}
],
"manifest_version": 2
}