Opens a full page of GitHub notifications in tabs.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Github Notifications in Tabs",
"short_name": "GNT",
"version": "1.4.2resigned1",
"description": "Opens a full page of GitHub notifications in tabs.",
"homepage_url": "https://github.com/gibfahn/gnt",
"permissions": [
"activeTab"
],
"icons": {
"32": "./icons/gnt32x32.png",
"48": "./icons/gnt48x48.png",
"96": "./icons/gnt96x96.png",
"128": "./icons/gnt128x128.png"
},
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"include_globs": [
"*://*github*notifications*"
],
"js": [
"browser-polyfill.js",
"button.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{6c8c5f42-9fe0-472b-96b1-7b7c8580057a}"
}
}
}