Files
remove-youtube-suggestions/manifest.json
T
2018-11-18 16:27:13 -05:00

33 lines
724 B
JSON

{
"description": "Removes all suggestions from Youtube.",
"manifest_version": 2,
"name": "Remove Youtube Suggestions",
"version": "2.0",
"homepage_url": "https://github.com/emumoo/remove-youtube-suggestions",
"content_scripts": [
{
"matches": ["*://*.youtube.com/*"],
"js": ["remove-suggestions.js"]
}
],
"options_ui": {
"page": "options.html"
},
"page_action": {
"browser_style": true,
"show_matches": ["*://*.youtube.com/*"],
"default_popup": "options.html",
"default_icon": {
"16": "icons/no-16.png",
"32": "icons/no-32.png",
"64": "icons/no-64.png"
},
"default_title": "Remove Youtube Suggestions"
},
"permissions": ["storage"]
}