Inspect and view changes in Video Plus 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": "Video Plus",
"short_name": "Video Plus",
"version": "0.1.7resigned1",
"author": "Niklas Gollenstede",
"description": "Browser extension that increases the display size of videos by removing unnecessary padding bars",
"icons": {
"1": "/icon.svg"
},
"minimum_chrome_version": "55.0.0",
"applications": {
"gecko": {
"id": "@video-plus",
"strict_min_version": "59.0"
}
},
"permissions": [
"storage",
"notifications",
"webNavigation",
"tabs",
"<all_urls>"
],
"optional_permissions": [],
"web_accessible_resources": [],
"incognito": "spanning",
"background": {
"page": "node_modules/web-ext-utils/loader/_background.html",
"persistent": false
},
"options_ui": {
"page": "VideoPlus#options",
"open_in_tab": false
},
"browser_action": {
"default_icon": {
"1": "/icon.svg"
},
"default_title": "Toggle Video Plus"
}
}