有人制作 Google Chrome 主题吗?

有人制作 Google Chrome 主题吗?

我只是想知道是否有任何非官方的 Google Chrome 主题可以轻松安装(例如,不必将 .dll 复制到主题文件夹)?

我希望能够点击应用主题(就像在 Google 官方主题页面上一样)。有这样的功能吗?

答案1

查看 Google Code 上的文档Chrome 主题

主题是一种特殊的扩展,可以改变浏览器的外观。主题是包装与常规扩展类似,但它们不包含 JavaScript 或 HTML 代码。

基本上,您要创建一个manifest.json文件,其中包含主题所需的所有数据和信息(例如,哪些图像用于 GUI 的哪个组件)。以下是示例:

{
  "version": "2.6",
  "name": "camo theme",
  "theme": {
    "images" : {
      "theme_frame" : "images/theme_frame_camo.png",
      "theme_frame_overlay" : "images/theme_frame_stripe.png",
      "theme_toolbar" : "images/theme_toolbar_camo.png",
      "theme_ntp_background" : "images/theme_ntp_background_norepeat.png",
      "theme_ntp_attribution" : "images/attribution.png"
    },
    "colors" : {
       "frame" : [71, 105, 91],
      "toolbar" : [207, 221, 192],
      "ntp_text" : [20, 40, 0],
      "ntp_link" : [36, 70, 0],
      "ntp_section" : [207, 221, 192],
      "button_background" : [255, 255, 255]
    },
    "tints" : {
      "buttons" : [0.33, 0.5, 0.47]
    },
    "properties" : {
      "ntp_background_alignment" : "bottom"
    }
  }
}

完成后,打包过程非常简单,只需chrome://extensions在 Chrome 的地址栏中打开,然后单击“打包”扩展程序按钮即可。有关更多详细信息,请查看包装在 Chrome 文档中

答案2

我只是想更新一下:谷歌现在添加了三十他们的页面在艺术家标签下添加了新主题。有些主题确实不错,有些则不然,但至少我们有更多的选择。

相关内容