mirror of
https://github.com/lawrencehook/remove-youtube-suggestions.git
synced 2026-07-25 06:54:31 +00:00
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"name": "Remove Youtube Suggestions",
|
|
"description": "Removes all suggestions from Youtube.",
|
|
"homepage_url": "https://github.com/emumoo/remove-youtube-suggestions",
|
|
"manifest_version": 2,
|
|
"version": "1.0.0",
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.youtube.com/*"],
|
|
"js": ["activate-page-action.js"],
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"matches": ["*://*.youtube.com/*"],
|
|
"js": ["remove-homepage-suggestions.js"],
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"matches": ["*://*.youtube.com/*"],
|
|
"js": ["remove-other-suggestions.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": false
|
|
},
|
|
|
|
"page_action": {
|
|
"browser_style": true,
|
|
"show_matches": ["*youtube*"],
|
|
"default_popup": "options.html",
|
|
"default_title": "Options",
|
|
"default_icon": {
|
|
"16": "icons/no-16.png",
|
|
"32": "icons/no-32.png",
|
|
"64": "icons/no-64.png"
|
|
}
|
|
},
|
|
|
|
"permissions": ["storage", "tabs"]
|
|
}
|