Inspect and view changes in Gmail Kanban 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",
"manifest_version": 2,
"name": "Gmail Kanban",
"description": "Simple browser extension Kanban tool for Gmail users.",
"version": "0.1.8",
"author": "Hyojin Kwak",
"homepage_url": "https://github.com/hyojin/GmailKanban#readme",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"tabs",
"unlimitedStorage",
"https://mail.google.com/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_icon": {
"19": "icons/icon19.png",
"38": "icons/icon38.png"
},
"default_title": "Gmail Kanban",
"default_popup": "popup.html"
}
}