Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Full Screen Video",
"description": "A extension for making video player full screen size in YouTube",
"version": "2.0.1",
"action": {
"default_icon": "icon16.png"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"full.js"
],
"css": [
"full.css"
],
"matches": [
"*:\/\/www.youtube.com\/*"
],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": false
},
"permissions": [
"storage"
]
}