26 lines
578 B
JSON
26 lines
578 B
JSON
{
|
|
"name": "youtube-ui",
|
|
"short_name": "yt-ui",
|
|
"description": "browser extension for a better youtube ui",
|
|
"version": "0.0.0",
|
|
"manifest_version": 3,
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://youtube.com/*", "https://www.youtube.com/*"],
|
|
"css": ["css/yt.css"]
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "index.html"
|
|
},
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "{be192f2b-7b51-48ec-9fcf-fe294f3f77ee}",
|
|
"data_collection_permissions": {
|
|
"required": ["websiteContent"],
|
|
"optional": []
|
|
}
|
|
}
|
|
}
|
|
}
|