2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

メルカリの通報を商品一覧ページからできるようにするChrome拡張機能作ってみた

Last updated at Posted at 2019-08-11

メルカリに転売ヤーさんたちがたくさん戦利品をうpしているので通報をしたい。
けど1つ1つの商品ページに飛んだら効率悪いから、Chromeの拡張機能でなんとかしたいというお話のメモ。

■ウィンドウを自動で閉じないようにしてます
Image from Gyazo
■ウィンドウを自動で閉じるようにしています
Image from Gyazo

※節度を持って使うようにする必要はある

/** 初期設定 **/
// 違反通報の内容入力欄に入る文字列の設定
var inputMessage = "転売禁止の商品を高額出品しているため";

// ウィンドウが開かれたら自動的に通報ボタンまでクリックし、通報後にウィンドウを閉じます
// (オフにしたい場合は true を false に変更)
var autoSubmitClose = false;

/** 初期設定ここまで **/

// ここからメイン処理
$(".items-box").each(function(i, o){
	$('<div class="report" href="' + $(o).children('a')[0].href.match(/(.*?)\?/)[1].replace('https://item.mercari.com/jp/', 'https://www.mercari.com/jp/report/') + '">通報</div>').appendTo($(o));
	$('.report').css({
		"background-color": "#ff0000",
		"cursor": "pointer"
	});
});

$('<a class="footer-report"><div>一括通報 ※未実装</div></a>').appendTo('.search-result-head');
$('.footer-report').css({
	"cursor": "pointer"
});

var tempWindow;
var selections;
var evt;
var tempHref;
$('.report').click(function() {
	tempWindow = window.open(this.attributes.href.value,"_blank",
	"top=50,left=50,width=500,height=700,scrollbars=1,location=0,menubar=0,toolbar=0,status=1,directories=0,resizable=1");
	tempHref = this.attributes.href.value;
	$(tempWindow).load(function(){
		selections = tempWindow.document.querySelector('select[name="type_id"]');
		selections.value = 1011;
		evt = document.createEvent("HTMLEvents");
		evt.initEvent("change", true, true);
		selections.dispatchEvent(evt);
		$(tempWindow.document).find('textarea[name="body"]').val(inputMessage);
		$(tempWindow.document).find('.contact-big-textarea').css('min-height', '35px');
		$(tempWindow.document).find('.contact-big-textarea').css('height', '35px');
		
		if(autoSubmitClose){
			$(tempWindow.document).find('button[type="submit"]').trigger('click');
			console.log(tempHref + ' : 通報完了');
			this.close();
		}
	});
	return false;
})

// ここから実装検討中内容
/*
$('.footer-report').click(function() {
	if(!confirm('一括通報を行いますか?\n※過度な通報は運営への負荷に繋がるので注意')){
		return false;
	}else{
		var list = [];
		var j = 0;
		$(".report").each(function(i, o){
			list[i] = $('.report')[j].attributes.href.value;
			j++;
		});
	}
});

function callback(href){
	tempWindow = window.open(href,"_blank",
	"top=50,left=50,width=500,height=700,scrollbars=1,location=0,menubar=0,toolbar=0,status=1,directories=0,resizable=1");
	$(tempWindow).load(function(){
		selections = tempWindow.document.querySelector('select[name="type_id"]');
		selections.value = 1011;
		evt = document.createEvent("HTMLEvents");
		evt.initEvent("change", true, true);
		selections.dispatchEvent(evt);
		$(tempWindow.document).find('textarea[name="body"]').val('転売禁止の商品を高額出品しているため');
		$(tempWindow.document).find('.contact-big-textarea').css('min-height', '35px');
		$(tempWindow.document).find('.contact-big-textarea').css('height', '35px');
		$(tempWindow.document).find('button[type="submit"]').submit();
	});
}
*/

一括で通報する機能をつけたかったんだけど、ループでウィンドウを開いて通報⇒閉じる⇒次のウィンドウってやろうとしたけどウィンドウが全部開いてから次の通報処理をしようとしちゃうのでどうすればいいのか考え中。
どなたかアドバイスかもういっそ実装してやって下さい・・。
eneko0513/MercariViolationReportAssistExtension: メルカリの商品一覧ページに通報ボタンを追加し、通報を簡易化する。
ソースくっそアレだから一から作ったほうが早いと思います。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?