Skip to content

Instantly share code, notes, and snippets.

@Mr-Ojii
Last active February 21, 2023 12:09
Show Gist options
  • Save Mr-Ojii/adffc945562f31150f634eaf1a0533cb to your computer and use it in GitHub Desktop.
Save Mr-Ojii/adffc945562f31150f634eaf1a0533cb to your computer and use it in GitHub Desktop.
AmazonSeller Filter
// ==UserScript==
// @name AmazonSeller Filter
// @namespace https://gist.github.com/Mr-Ojii/adffc945562f31150f634eaf1a0533cb
// @version 1.0
// @description:ja Amazonで検索をする際、出品者・配送者をAmazonに限定します
// @author Mr-Ojii
// @match *://*.amazon.co.jp/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=amazon.co.jp
// @grant none
// ==/UserScript==
//https://forest.watch.impress.co.jp/docs/review/1292/011/index.html
(function() {
'use strict';
if(!location.search.includes('6%3AAN1VRQENFRJN5') || !location.search.includes('AN1VRQENFRJN5'))
{
location.replace(location.origin + location.pathname + location.search + (location.search ? '&' : '?') + 'emi=AN1VRQENFRJN5' + location.hash);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment