Inspect and view changes in NextPlease 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "0.10.1resigned1",
"applications": {
"gecko": {
"id": "{57B65ABB-F4E3-4358-8472-15AEE0833E11}"
}
},
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"32": "icons/nextplease-logo-32.png"
},
"browser_action": {
"default_icon": "icons/nextplease-logo-32.png",
"default_title": "__MSG_extensionName__",
"default_popup": "popup/nextplease_popup.html",
"browser_style": true
},
"commands": {
"0": {
"suggested_key": {
"default": "Alt+Shift+0"
},
"description": "__MSG_Digit0Command__"
},
"1": {
"suggested_key": {
"default": "Alt+Shift+1"
},
"description": "__MSG_Digit1Command__"
},
"2": {
"suggested_key": {
"default": "Alt+Shift+2"
},
"description": "__MSG_Digit2Command__"
},
"3": {
"suggested_key": {
"default": "Alt+Shift+3"
},
"description": "__MSG_Digit3Command__"
},
"4": {
"suggested_key": {
"default": "Alt+Shift+4"
},
"description": "__MSG_Digit4Command__"
},
"5": {
"suggested_key": {
"default": "Alt+Shift+5"
},
"description": "__MSG_Digit5Command__"
},
"6": {
"suggested_key": {
"default": "Alt+Shift+6"
},
"description": "__MSG_Digit6Command__"
},
"7": {
"suggested_key": {
"default": "Alt+Shift+7"
},
"description": "__MSG_Digit7Command__"
},
"8": {
"suggested_key": {
"default": "Alt+Shift+8"
},
"description": "__MSG_Digit8Command__"
},
"9": {
"suggested_key": {
"default": "Alt+Shift+9"
},
"description": "__MSG_Digit9Command__"
},
"Next": {
"suggested_key": {
"default": "Alt+Shift+Right"
},
"description": "__MSG_NextPageCommand__"
},
"Prev": {
"suggested_key": {
"default": "Alt+Shift+Left"
},
"description": "__MSG_PrevPageCommand__"
},
"First": {
"suggested_key": {
"default": "Alt+Shift+Up"
},
"description": "__MSG_FirstPageCommand__"
},
"Last": {
"suggested_key": {
"default": "Alt+Shift+Down"
},
"description": "__MSG_LastPageCommand__"
}
},
"options_ui": {
"page": "options/options.html",
"browser_style": true,
"chrome_style": true
},
"permissions": [
"activeTab",
"storage",
"notifications",
"contextMenus"
],
"background": {
"scripts": [
"lib/configs/Configs.js",
"scripts/nextplease_common.js",
"scripts/nextplease_background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/nextplease_menu.js"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"lib/configs/Configs.js",
"scripts/nextplease_common.js",
"scripts/nextplease_content.js"
]
}
]
}