youtube-shorts-disabler/manifest.json

20 lines
361 B
JSON
Raw Normal View History

2022-03-13 01:18:42 -05:00
{
"manifest_version": 2,
"name": "YouTube Shorts Disabler",
"author": "L. Bradley LaBoon",
"description": "Redirects YouTube shorts to regular videos",
"version": "1.0",
"icons": {
"16": "ysd.png",
"48": "ysd.png",
"128": "ysd.png"
},
"content_scripts": [{
"matches": ["https://www.youtube.com/shorts/*"],
"js": ["disable_shorts.js"]
}]
}