Google chrome Chrome主题新选项卡背景填充不正确

Google chrome Chrome主题新选项卡背景填充不正确,google-chrome,google-chrome-extension,google-chrome-theme,Google Chrome,Google Chrome Extension,Google Chrome Theme,我想修改我的个人使用,但正如你可以从下面的图片看到的背景并没有填补整个高度。这可以在macOS上复制,并将窗口拉伸到其全高(忽略停靠),或者在本例中,以全屏显示。背景是1920x1080,而我的显示器是1920x1200,我怀疑这就是它损坏的原因。将我的显示器缩放到1920x1080会使我的屏幕变得丑陋,那么我的选择是什么 manifest.json文件的相关部分如下: "name": "Black red shards", "th

我想修改我的个人使用,但正如你可以从下面的图片看到的背景并没有填补整个高度。这可以在macOS上复制,并将窗口拉伸到其全高(忽略停靠),或者在本例中,以全屏显示。背景是1920x1080,而我的显示器是1920x1200,我怀疑这就是它损坏的原因。将我的显示器缩放到1920x1080会使我的屏幕变得丑陋,那么我的选择是什么

manifest.json文件的相关部分如下:

   "name": "Black red shards",
   "theme": {
      "colors": {
         "bookmark_text": [ 255, 0, 0 ],
         "button_background": [ 255, 0, 0, 1 ],
         "frame": [ 66, 116, 201 ],
         "ntp_background": [ 0, 2, 2 ],
         "ntp_text": [ 255, 0, 0 ],
         "tab_background_text": [ 255, 0, 0 ],
         "tab_text": [ 255, 0, 0 ],
         "toolbar": [ 0, 0, 0 ],
     "omnibox_text": [ 255, 0, 0 ]
      },
      "images": {
         "theme_frame": "images/theme_frame.jpeg",
         "theme_ntp_background": "images/theme_ntp_background.jpeg",
         "theme_tab_background": "images/theme_tab_background.png",
         "theme_toolbar": "images/theme_toolbar.jpeg"
      },
      "properties": {
         "ntp_background_alignment": "bottom",
         "ntp_background_repeat": "no-repeat"
      },
      "tints": {
         "buttons": [ 0, 1, 0.5 ]
      }
   },

你猜对了。您可以选择放大图像的分辨率,使其与显示器的分辨率相匹配。是一张1920x1200的图片,原始放大。

看起来谷歌已经修复了这个漏洞,现在又恢复正常。

我相信谷歌已经修复了这个漏洞。现在又恢复正常了。无论如何,谢谢,我将通过回答问题并将其标记为正确答案,将此问题标记为已解决