Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.3.3",
"description": "Hide members-only videos on YouTube.",
"author": "YouGo",
"manifest_version": 3,
"name": "Hide YouTube Members-Only",
"icons": {
"48": "dist\/assets\/icons\/icon_48.png",
"96": "dist\/assets\/icons\/icon_96.png"
},
"action": {
"default_icon": {
"48": "dist\/assets\/icons\/icon_48.png",
"96": "dist\/assets\/icons\/icon_96.png"
},
"default_popup": "dist\/popup\/popup.html",
"default_title": "HYM"
},
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"dist\/browser-polyfill.js",
"dist\/content\/content.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "dist\/background\/background.js"
},
"options_page": "dist\/popup\/settings.html",
"web_accessible_resources": [
{
"resources": [
"dist\/content\/script.js"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
]
}