How to use settings to make ads invisible by SiteClipper7.

  • 投稿:
  • 更新:2015年1月 7日
  • by
  • in

SiteClipper7 is a web browsing app for iOS.
I will explain how to use settings to make ads invisible.
Choose the desired page from SiteClipper7 settings.
“Settings>GENERAL>Clips&Bookmarks”

First, the CSS settings. Set them like in Example 1.
Look for the ad blocks. (id or class name)

[Example 1]
#id-1{display:none;}
#id-2{display:none;}
.class-name-1{display:none;}
.class-name-2{display:none;}

Next, the JavaScript settings. Set them like in Example 2.

[Example 2]
var d=document;
var e=d.createElement('SCRIPT');
e.setAttribute('language','JavaScript');
e.setAttribute('src','http://tentatsu.sakura.ne.jp/ad_del.js');
e.setAttribute('charset', 'UTF-8');
d.body.appendChild(e);

This is all need to do.

Sample:
2015-1-7 13.00.10.png