Chrome Theme 自作する
Themeファイルの作成は下記がベストです。
manifest.jsonの記述内容については下記が参考になります。
The 'manifest_version' key must be present and set to 2 (without quotes). See developer.chrome.com/extensions/manifestVersion.html for details.
{
"description": "",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqj0a9p34y8fmKf2nhO1tYSbm/iOpme4h1+rtCAODnwlWijM3MKoMpmdrsGoV8Z7IxxLxsnf8FKOuxcM4DcmXrAdDpSsYdnzR3PVU+bcfQgWAwFqEBKthGOLX6igIOWHdr5aXrpsuf91s4AWrW+4QjmkDk/FpISxXvaWMiADrT5N+jeWxcNRxgwmCuWCRWwaJbHDmEl6CdbrINLM7eAYzxJA7945Ad9ywHWR263YgS0vDEwOVt0ogrn4l3cKtfm0tGwvrq4ef+ehJ7OhHQ76TbKhl9nV18UiAt22hwF5AZ4628A2ySURLEFENvn05UU3CackCmHFXL1+JNpV2Bixe9QIDAQAB",
"manifest_version": 2,
"name": "Midnight Chrome",
"theme": {
"colors": {
"bookmark_text": [ 170, 170, 170 ],
"button_background": [ 38, 38, 38, 1 ],
"frame_incognito": [ 255, 255, 255 ],
"ntp_background": [ 25, 25, 25 ],
"ntp_text": [ 255, 255, 255 ],
"tab_background_text": [ 170, 170, 170 ],
"tab_text": [ 255, 255, 255 ],
"toolbar": [ 43, 43, 43 ]
},
"images": {
"theme_ntp_background": "images/theme_ntp_background.png",
"theme_tab_background": "images/theme_tab_background.png",
"theme_tab_background_incognito": "images/theme_tab_background.png",
"theme_tab_background_v": "images/theme_tab_background.png",
"theme_toolbar": "images/theme_toolbar.png"
},
"properties": {
"ntp_background_alignment": "top",
"ntp_background_repeat": "repeat-x"
},
"tints": {
"buttons": [ 0, 0, 1 ]
}
},
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.0.3"
}

Themes - Google Chrome
参考

mike-u/EditChromeThemes: A guide to editing Chrome themes
Chrome Web Store - fiddle n
参考

mike-u/EditChromeThemes: A guide to editing Chrome themes
Chrome Web Store - fiddle n
