stylish插件怎么用?如果用stylish修改网页的样式?

stylish插件是我们对网站进行样式修改时常用的chrome插件。其原理就是修改网页的CSS样式,用户可以通过自己写css代码,来修改网页为自己喜欢的排版和浏览习惯,这个对于文字较多的网页尤其赞啊。当然小白不用担心,Stylish网站还提供网站CSS样式分享功能,里面已经有很多高手改好的CSS样式啦,我们可以自己选择。Stylish插件可以优化页面的样式。对于大多数普通用户来说,使用 Stylish插件套用那些现成的模板,来优化那些设计不佳或风格不喜欢的网站,是个很好的解决方案。我们今天就来给大家说说Chrome Stylish插件怎么用?我们从以下几个方面来介绍:
stylish的使用方法

1.stylish插件哪里下载?

1.可以打开chrome应用商店就在官网搜索stylish,在线安装。
2.不能打开chrome应用商店就在chrome插件网:http://www.cnplugins.com或者http://chromecj.com 下载CRX文件离线安装。

3.如果你不能打开chrome应该商店又执意到上去,请参照:有哪些可以访问谷歌搜索、谷歌学术网站的方法?

2.stylish插件怎么安装到chrome浏览器?

1.在线安装stylish插件的方法不用多说,直接点击添加到chrome即可:
在线安装stylish插件
2.stylish插件的离线安装方法参照:怎么在谷歌浏览器中安装.crx扩展名的离线chrome插件

3.使用Stylish网站提供的CSS样式的方法

1.在chrome浏览器中安装好stylish插件后,在浏览器的右上方可以看到一个S的按钮标记。当stylish插件是亮着时表示开启,灰色就表示关闭。
2.下面我们举例对某个网站例如新浪微博进行网站样式的调整。打开微博官网后点击stylish插件按钮,第一次使用时会看到可以使用的样式表为0,如下图所示:
stylish插件使用1
3.点击“为此网站查找更多样式”即会跳转到官网搜索微博相关样式,如下图所示:

stylish微博网站样式
4. 页面里已经有很多分享的样式了,Stylish 就会为你列出该网站合适的CSS模板。我们点击进入安装页面选择某一个样式,点击下载。网站会提示是否确定添加此样式至stylish样式表,确认即可。当然你也可以不停的试试,找到自己最喜欢的样式。
添加样式至stylish
5.下面我先看一下新浪微博安装stylish样式插件之前的样式是:
安装stylish插件前
安装了我们刚才选择的stylish样式插件后的是这样的:
安装了stylish插件后
6.如果你对自己选择的样式不喜欢的话,可以直接点击禁用就可以啦。
禁用stylish插件

4.高手自己编写CSS样式的方法

如果CSS编码在行的话,还可以自己在修改页面对CSS样式进行调整!
编辑css样式
下面是一段网页自己编写的修改网页字体的CSS样式。


参考样式代码:

/*三行分别是字体粗细(整百数字),字体样式,字体阴影*/
*{font-weight:500!important;}
*{font-family: “Microsoft Yahei”, “Microsoft Yahei” !important; }
*{text-shadow:0.01em 0.01em 0.01em #999999 !important;}

/http://chromecj.com


/*滚动条*/
::-webkit-scrollbar{width: 6px;height: 6px;}
::-webkit-scrollbar-track-piece{background-color: #CCCCCC;-webkit-border-radius: 6px;}
::-webkit-scrollbar-thumb:vertical{height: 5px;background-color: #999999;-webkit-border-radius: 6px;}
::-webkit-scrollbar-thumb:horizontal{width: 5px;background-color: #CCCCCC;-webkit-border-radius: 6px;}
::-webkit-scrollbar {width: 9px;height: 9px;}
::-webkit-scrollbar-track-piece {background-color: transparent;}
::-webkit-scrollbar-track-piece:no-button {}
::-webkit-scrollbar-thumb {background-color: #3994EF;border-radius: 3px;}
::-webkit-scrollbar-thumb:hover {background-color: #A4EEF0;}
::-webkit-scrollbar-thumb:active {background-color: #666;}
::-webkit-scrollbar-button:vertical { width: 9px; }
::-webkit-scrollbar-button:horizontal { width: 9px; }
::-webkit-scrollbar-button:vertical:start:decrement { background-color: white; }
::-webkit-scrollbar-button:vertical:end:increment { background-color: white; }
::-webkit-scrollbar-button:horizontal:start:decrement { background-color: white; }
::-webkit-scrollbar-button:horizontal:end:increment { background-color: white; }
body::-webkit-scrollbar-track-piece {background-color: white;}

/http://www.cnplugins.com

/*指向图片绿光*/
img:hover{box-shadow: 0px 0px 4px 4px rgba(130,190,10,0.6) !important;-webkit-transition-property: box-shadow;-webkit-transition-duration: .31s;}
img{-webkit-transition-property: box-shadow;-webkit-transition-duration: .31s;}

/*输入框美化*/
input { border:#ccc 1px solid; border-radius: 6px; -webkit-border-radius: 6px;-webkit-border-radius: 6px;}
input[type=”text”]:focus, input[type=”password”]:focus, textarea:focus {border: 2px solid #6FA1D9 !important;-webkit-box-shadow:0px 0px 5px #6FA1D9 !important;outline:none}
input[type=”checkbox”]:focus,input[type=”submit”]:focus,input[type=”reset”]:focus, input[type=”radio”]:focus {border: 1px solid #6FA1D9 !important; outline:none}
input:focus, select:focus, textarea:focus {outline: 1px solid #10bae0 ;-webkit-outline-radius: 3px ;}
body a:hover:active {color: #10bae0;}
body *:focus {outline: 2px solid rgba(16,186,224,0.5) ;outline-offset: 1px ;outline-radius: 2px ;-webkit-outline-radius: 2px ;}
body a:focus {outline-offset: 0px ;}
body button:focus,
body input[type=reset]:focus, body input[type=button]:focus, body input[type=submit]:focus {outline-radius: 2px !important;-webkit-outline-radius: 2px !important;}
body textarea:focus, body button:focus, body select:focus, body input:focus {outline-offset: -1px !important;}

/*淡蓝色样式*/
a{-webkit-transition: all 0.3s ease-out;}
a:hover{color: #39F !important;text-shadow:-5px 3px 18px #39F !important;-webkit-transition: all 0.3s ease-out;}
*::-webkit-selection {background: #333333 !important; color: #00FF00 !important; }

/*去除下划线*/
*{text-decoration:none!important}
a:hover{text-decoration:none!important}

a{
/*color: #014A8F;*/
-webkit-transition-property:color;
-webkit-transition-duration: 0.0s;
}

/*指向文字加粗*/
a:hover {
/*color: #0000FF ;*/
-webkit-transition-property:color;
-webkit-transition-duration: 0.0s;
font-weight:bold
}

/*访问过链接红色*/
a:visited, a:visited *, a:active, a:active * {color: #FF0000 !important;}


5.常用stylish样式推荐

1.百度轻   http://userstyles.org/styles/123858
2.百度多栏  http://userstyles.org/styles/127217
3.Dishonored - Google Theme   https://userstyles.org/styles/123499/dishonored-google-theme
4.Google Variety   https://userstyles.org/styles/128178/google-variety
5.TieBa - Maverick 【百度贴吧】   https://userstyles.org/styles/124770/tieba-maverick
6.哔哩哔哩(bilibili.com)样式调整     https://userstyles.org/styles/102179/bilibili-com
 
以上就是今天为大家介绍的chrome stylish插件的一些基础的使用方法,近期还会整理一篇文章介绍如何利用stylish插件自定义网页的字体。当然,更高级一点的话,Stylish插件实际上还可以实现去除广告、补全浏览器部分功能,后续有机会我们都会陆续分享。希望我们的分享能够帮助到大家。

  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
利用用户样式管理器Stylish来重新编辑网站的样式。您可利用Stylish为许多网站安装主题和皮肤,也可创建自己的主题和皮肤。 ★ 为Reddit添加黑色风格,使用简约的Facebook,或者更改Google、Twitter或您最爱的任意网站的外观。 ★ 自定义背景、配色方案、字体甚至动画。 ★ 方便地禁用、启用、编辑或删除任意已安装主题。 ★ 利用Stylish的CSS编辑器创建自己的用户样式(主题),然后与数百万Stylish用户共享。 ----------------------------------------------- ***Stylish为世界各地的网站和Web应用提供主题和皮肤,例如:*** :check_mark: 搜索引擎–Google,百度,雅虎 :check_mark: 社交网站–Facebook,Twitter,Reddit,Whatsapp,Instagram,WeChat :check_mark: 开发人员网站 – Stackoverflow,Github,JIRA,Thunderbird :check_mark: 浏览器 – Chrome,Firefox,Opera,Safari ----------------------------------------------- ***请求主题*** 如果您发现某个网站没有主题,或者您想根据自己最爱的艺术家、电影或节日创建新主题,您可在Stylish论坛(forum.userstyles.org)上向Stylish社区请求创建该主题 ----------------------------------------------- ***Stylish社区*** :check_mark: 官方:forum.userstyles.org :check_mark: reddit.com/r/userstyles :check_mark: tumblr.com/tagged/userstyles :check_mark: github.com/UserStyles ----------------------------------------------- ***联系方式*** Stylish是一款有生命、有活力的产品,随时都在更新和成长。如果您有任何与Stylish有关的评论、建议或遇到任何问题,欢迎随时通过userstyles.org/contact联系我们。我们会尽快回复您。 ----------------------------------------------- ***支持*** 您可在userstyles.org/help上找到关于如何使用Stylish的教程,包括如何安装主题、创建主题并上传至Stylish库。 如果您遇到损坏的主题,请访问Stylish网站上该主题的页面并联系制作者。Stylish社区及时处理您的报告,希望收到您的反馈。如果您喜欢某个主题,请不要忘记点赞! :check_mark: 要制作自己的样式,请查看这里的说明: github.com/stylish-userstyles/stylish/wiki ----------------------------------------------- ***重要提示!*** 我们非常重视您的隐私,所以我们必须保证您理解我们的隐私政策:为了向您提供Stylish服务,即显示与您访问的网页相关的和推荐的样式、以及安装次数,我们需要收集浏览数据,详见我们的隐私政策:userstyles.org/login/policy。 ----------------------------------------------- 支持语言:Deutsch,English,Français,Nederlands,Türkçe,español,italiano,português (Brasil),suomi,svenska,čeština,Ελληνικά,Српски,русский,తెలుగు,‫العربية,中文 (简体),中文 (繁體),日本語

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值