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",
"name": "Recommendation filter for YouTube",
"description": "Customise which recommendations are shown on YouTube.",
"version": "1.0.0",
"permissions": [
"*:\/\/www.youtube.com\/*",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"dist\/content\/bundle.js"
],
"css": [
"style\/content.css"
],
"all_frames": true,
"run_at": "document_end"
}
],
"background": {
"scripts": [
"dist\/background\/bundle.js"
]
},
"browser_action": {
"default_popup": "layout\/popup.html",
"default_icon": {
"48": "images\/ic_48.png",
"128": "images\/ic_128.png"
}
},
"options_ui": {
"page": "layout\/popup.html",
"open_in_tab": false
},
"icons": {
"48": "images\/ic_48.png",
"128": "images\/ic_128.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"images\/*.svg",
"style\/*.css"
],
"minimum_chrome_version": "5"
}