You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
685 B
31 lines
685 B
{
|
|
"short_name": "YKonsole Helper",
|
|
"version": "1.0",
|
|
"manifest_version": 2,
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://www.youtube.com/*"],
|
|
"css": ["static/css/main.css"],
|
|
"js": ["static/js/main.js", "static/js/runtime-main.js"]
|
|
}
|
|
],
|
|
"name": "YKonsole Helper",
|
|
"icons": {
|
|
"32": "icon.png"
|
|
},
|
|
"start_url": ".",
|
|
"display": "standalone",
|
|
"theme_color": "#000000",
|
|
"background_color": "#ffffff",
|
|
"permissions": [
|
|
"storage",
|
|
"activeTab",
|
|
"declarativeContent",
|
|
"https://www.youtube.com/",
|
|
"https://indigo.stian-aune.com/",
|
|
"http://127.0.0.1:9999/"
|
|
]
|
|
}
|