是否可以访问谷歌Chrome主题?

时间:2014-10-08 15:03:55

标签: html css asp.net-mvc google-chrome-extension google-chrome-theme

这肯定是在某个地方被问过,但无法找到:(

我正在阅读有人在html中使用的finding out which browser

我的网站使用'主题'(DevExpress'黑色玻璃),并想知道当用户登录时是否有办法访问Chrome的当前主题。

我知道这有可能成为巨大的承诺,但如果有可能,有没有办法获得chromes主题的'css'(显然这只适用于用户是使用铬)?

我目前正在用mvc编写一个项目,但是这里的任何html / css方法都会有所帮助。

例如:

Grass

是否有可能获得对“草”主题的CSS的访问权(请注意,这只是一个例子,还有许多其他主题可用)?

1 个答案:

答案 0 :(得分:1)

据我所知,这是不可能的,因为它不像CSS那样工作。您必须获取JSON文件,因为我认为CRX不可能。

以下是GC主题的JSON文件的样子:

{
  "version": "1.0",
  "name": "test theme",
  "description": "A test theme",
  "theme": {
    "images" : {
      "theme_frame" : "images/theme_frame_camo.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"
    }
  }
}

更多信息: https://code.google.com/p/chromium/wiki/ThemeCreationGuide

顺便说一句:为什么你会想要这个,当有3-4种颜色,没有款式?你可以用颜色选择器获得颜色。