1
I am creating a theme for Google Chrome, but the image does not fill the entire screen. I already consulted the documentation, I read some tutorials, but my image does not fill the whole screen of the browser.
Man manifest is like this:
{
"version": "2015.0.1",
"description": "Nanatsu no Taizai Extension",
"name": "Nanatsu no Taizai",
"theme": {
"images": {
"theme_frame_overlay": "img/overlay-40.png",
"theme_toolbar": "img/toolbar-120.png",
"theme_ntp_background": "img/background.png",
"theme_button_background": "img/button_30.png",
"theme_tab_background": "img/tab.png"
},
"color": {
"frame": [10, 17, 27],
"toolbar": [10, 17, 27],
"ntp_text": [255, 255, 255],
"ntp_link": [255, 255, 255],
"ntp_setion": [10, 17, 27],
"button_background": [10, 17, 27]
},
"tints": {
"buttons": [0.33, 0.5, 0.47]
},
"properties": {
"ntp_background_alignment": "bottom",
"ntp_background_repeat": "no-repeat"
}
},
"author": "Josue",
"manifest_version": 2
}
Below the link of my browser screensaver, with the Theme "installed".
What’s wrong with my manifest?
No one even knows a hunch what might be wrong ?
– Josué
Why not use an application that to make a theme in which then just add an image ?
– Miguel Soeiro
@Someonehelpme I’m the type who likes to "do it for myself" as a matter of learning. However, I visited the site themebeta.with and I noticed in the Background Image, normal size, Fill screen and fit to screen options. I tested each of them in the property "properties" : { "ntp_background_alignment" : "bottom" }. I used " center fit to screen ", and successively it even works.
– Josué
If this has solved your problem, put as an answer to your question, so that someone has the same doubt, here is the answer.
– Miguel Soeiro