Skip to content

Commit e3e5459

Browse files
committed
Initial commit
0 parents  commit e3e5459

File tree

3 files changed

+65
-0
lines changed

3 files changed

+65
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pak

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
https://github.com/qiaen/just-theme.git
2+
3+
先看看配色吧,我用的是阿里的颜色,其实还可以使用背景图,但是花里花哨的还不如纯色看着舒服
4+
5+
![配色预览](https://user-gold-cdn.xitu.io/2020/7/9/1733368597d34870?w=2560&h=1600&f=png&s=394676)
6+
```json
7+
{
8+
"description": "Just Theme: 随心所欲定制自己的chrome配色!",
9+
"manifest_version": 2,
10+
"name": "Just Theme",
11+
"theme": {
12+
"colors": {
13+
"bookmark_text": [255, 255, 255],
14+
"frame": [0, 35, 41],
15+
"ntp_background": [255, 255, 255],
16+
"ntp_text": [125, 134, 142],
17+
"tab_background_text": [255, 255, 255],
18+
"tab_background_text_inactive": [255, 255, 255],
19+
"tab_background_text_incognito": [255, 255, 255],
20+
"tab_background_text_incognito_inactive": [255, 255, 255],
21+
"tab_text": [255, 255, 255],
22+
"toolbar": [8, 151, 156]
23+
},
24+
"tints": {
25+
"buttons": [0.2, 0.2, 0.9],
26+
"frame_inactive": [-1, -1, -1],
27+
"frame_incognito": [-1, -1, -1],
28+
"frame_incognito_inactive": [-1, -1, -1]
29+
}
30+
},
31+
"version": "2"
32+
}
33+
```
34+
如果无法预览图片,请点这里https://juejin.im/post/5f0701d8f265da22f6162c6b
35+
36+
> 注意:颜色需是rgb格式,形如[223, 78, 90],否则报错,可以到网上找下转rgb的网站,比如https://www.sioe.cn/yingyong/yanse-rgb-16/
37+
38+
![对颜色格式有要求](https://user-gold-cdn.xitu.io/2020/7/9/173336a44407772f?w=1390&h=634&f=png&s=129524)

manifest.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"description": "Just Theme: 随心所欲定制自己的chrome配色!",
3+
"manifest_version": 2,
4+
"name": "Just Theme",
5+
"theme": {
6+
"colors": {
7+
"bookmark_text": "#fff",
8+
"frame": [0, 35, 41],
9+
"ntp_background": [255, 255, 255],
10+
"ntp_text": [125, 134, 142],
11+
"tab_background_text": [255, 255, 255],
12+
"tab_background_text_inactive": [255, 255, 255],
13+
"tab_background_text_incognito": [255, 255, 255],
14+
"tab_background_text_incognito_inactive": [255, 255, 255],
15+
"tab_text": [255, 255, 255],
16+
"toolbar": [8, 151, 156]
17+
},
18+
"tints": {
19+
"buttons": [0.2, 0.2, 0.9],
20+
"frame_inactive": [-1, -1, -1],
21+
"frame_incognito": [-1, -1, -1],
22+
"frame_incognito_inactive": [-1, -1, -1]
23+
}
24+
},
25+
"version": "2"
26+
}

0 commit comments

Comments
 (0)