修改chrome背景色

安装customecss.crx插件

在配置文件夹\Default\Extensions\kgmedhinhdocolhpcmikgehmahdjemcn\1.0_0里面可以直接修改custom.css文件

修改后需要重启浏览器才能生效

附件里面的css文件内容如下

  1. /*字体阴影*/
  2. *{text-shadow:0.01em 0.01em 0.1em #999999 !important;}

  3. /*全局雅黑字体*/
  4. *:not([class*="icon"]):not(i){font-family: "Microsoft YaHei" !important;}

  5. /*去除链接下划线*/
  6. a{text-decoration:none !important}

  7. /*淡蓝色文字效果*/
  8. a{-webkit-transition: all 0.3s ease-out;}
  9. a:hover{color: #39F  !important;text-shadow:-5px 3px 18px #39F !important;-webkit-transition: all 0.3s ease-out;}
  10. *::-webkit-selection {background: #333333 !important; color: #00FF00 !important; }
复制代码





-------------------------------------------------------------------------------------------





比较复杂的方法是自己创建扩展安装


实现步骤:

1、新建一个文件夹,比如customcss,包含custom.css和manifest.json两个文件

2、manifest.json的内容如下
  1. {
  2.    "content_scripts": [ {
  3.       "css": ["custom.css"],
  4.       "all_frames": true,
  5.       "matches": [ "http://*/*", "https://*/*" ]
  6.    } ],
  7.    "description": "custom.css",
  8.    "name": "Custom CSS",
  9.    "version": "1.0",
  10.    "manifest_version": 2
  11. }
复制代码

description是扩展介绍,name是扩展名字,version是版本号,都可以自己改

3、打开chrome的扩展管理,选择打包扩展程序,扩展程序根目录选择customcss文件夹,私有密匙文件不用管,然后选择打包扩展程序,生成customcss.crx和customcss.pem

4、将customcss.crx拖入扩展管理安装即可
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值