/*
* @title Googleアドセンス全面広告を消す
* @description 表示してるurl末尾の'#google_vignette'を消して再読み込みするだけ
* @include http://*
* @license MIT License
* @require
*/
javascript:(function(){
var oldUrl = window.location.href;
var newUrl = oldUrl.replace('#google_vignette', '');
if (newUrl !== oldUrl) {
window.location.href = newUrl;
}
})();