Just Amazon (jp)

amazon.co.jp での検索結果をAmazon.co.jpの商品のみにします。

What is Just Amazon (jp)?

Just Amazon (jp) is a Chrome extension developed by IIMURA Takuji, and its main feature is "amazon.co.jp での検索結果をAmazon.co.jpの商品のみにします。".

Extension Screenshots

screenshot
screenshot

Download Just Amazon (jp) Extension CRX File

Download Just Amazon (jp) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        amazon.co.jp での検索結果を Amazon.co.jp が販売している商品のみにします。
逆に言うと、Amazon.co.jpが販売しているわけではないマーケットプレイスの商品を検索結果に含めない形にします。
なお、マーケットプレイスのものも検索結果に入れたい場合は、"Just Amazon" のアイコンをクリックすることで検索し直すことができます。

Just Amazon のアイコンが 青地に'a' のアイコンの場合は、Amazon.co.jp が販売している商品のみが検索されています。
Just Amazon のアイコンが 黄色地に'業者' のアイコンの場合は、マーケットプレイスも含めた商品が検索されています。

N-Stylesさんの http://n-styles.com/main/archives/2017/04/14-054444.php を参考にしています。
(Version 2.0 からはマジックワードとして使っている文字列が &rh=p_6%3AAN1VRQENFRJN5 に変わっています)

source を https://github.com/limura/JustAmazonCoJP においておきました。

* 更新履歴

- Version 3.0.0: Manifest V3 に移行しました。動作原理などなど変わっています。                    

Extension Basic Information

Name Just Amazon (jp) Just Amazon (jp)
ID onlpmlkjcaeiajmonbeioinniidpiooa
Official URL https://chromewebstore.google.com/detail/just-amazon-jp/onlpmlkjcaeiajmonbeioinniidpiooa
Description amazon.co.jp での検索結果をAmazon.co.jpの商品のみにします。
File Size 18.9 KB
Installation Count 3,252
Current Version 3.0.0
Last Updated 2022-01-25
Publish Date 2020-01-30
Rating 5.00/5 Total 3 Ratings
Developer IIMURA Takuji
Email [email protected]
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Just Amazon (jp)",
    "description": "amazon.co.jp \u3067\u306e\u691c\u7d22\u7d50\u679c\u3092Amazon.co.jp\u306e\u5546\u54c1\u306e\u307f\u306b\u3057\u307e\u3059\u3002",
    "version": "3.0.0",
    "icons": {
        "16": "icon\/JustAmazon16.png",
        "48": "icon\/JustAmazon48.png",
        "128": "icon\/JustAmazon128.png"
    },
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "action": {
        "default_icon": "icon\/JustAmazon32.png",
        "default_title": "\u691c\u7d22\u7d50\u679c\u3092Amazon.co.jp\u3067\u8ca9\u58f2\u3055\u308c\u3066\u3044\u308b\u3082\u306e\u3060\u3051\u306b\u5909\u66f4\u3059\u308b"
    },
    "permissions": [
        "tabs",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/www.amazon.co.jp\/s*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "enableRule",
                "enabled": true,
                "path": "enableRule.js"
            },
            {
                "id": "disableRule",
                "enabled": false,
                "path": "disableRule.js"
            }
        ]
    }
}