有道云笔记隐藏广告

话说有道云笔记左下方的广告的确很烦!

找到你有道云笔记的安装位置:YoudaoYoudaoNote hemeuild.xml

用记事本打开,搜索 AdWraperMid 找到 bounds属性,改成 bounds="0,0,0,0"

修改前:

修改后: 

 

如果是V6.0以前的版本参照如下修改:

<!-- 左下角广告-->
<PanelAd type="adpanel" css="public" ass="mainform panelclient PanelAd">
    <panelTopLine type="panel" css="AdPanel" Dockstyle="top" Bounds="0,0,0,0"/>
    <MiddlePhotoPanel type="panel" css="public" DockStyle="top" Bounds="0,0,250,160" Margin="0,13,0,13">                            
        <AdPhoto type="photo" css="Ad AdPhoto" AnchorStyle="center" AutoZoom="ZoomEqual" Bounds="0,0,0,0">
            <AdClose type="button" css="btnclear" AnchorStyle="topright" Bounds="-1,1,24,24" />
            <AdText type="label" css="AdText" AnchorStyle="bottomleft" Bounds="6,-6,25,10"/>
        </AdPhoto>
        
    </MiddlePhotoPanel>
</PanelAd>

 以上方式只是隐藏广告,广告隐藏后,就变成了一个空白的区域,如果想去掉这个空白的区域

删除如下代码   YoudaoNote hemedefaultskin.xml

<PanelAd Bounds="0,0,0,161" DockStyle="bottom">

</PanelAd>

最后还是要感谢一下有道云团队,这款产品真的不错!

原文地址:https://www.cnblogs.com/xbblogs/p/9414315.html