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,
"version": "1.1.7",
"name": "YouTube Row Fixer",
"description": "A browser extension for customizing the videos per row and to fix big thumbnail issue",
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"permissions": [
"storage",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "YouTube Row Fixer",
"default_icon": "images\/rowFixer-32.png",
"default_popup": "index.html"
},
"icons": {
"16": "images\/rowFixer-16.png",
"32": "images\/rowFixer-32.png",
"48": "images\/rowFixer-48.png",
"64": "images\/rowFixer-64.png",
"128": "images\/rowFixer-128.png"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"content_script.js"
]
}
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"resources": [
"**\/*",
"*"
],
"use_dynamic_url": true
}
]
}