Sold By Amazon

This extension reloads any Amazon search results with only products sold and shipped by Amazon.

Sold By Amazonとは何ですか?

Sold By Amazonはphunglovescatsによって開発されたChromeの拡張機能で、その主な機能は「This extension reloads any Amazon search results with only products sold and shipped by Amazon.」です。

拡張機能のスクリーンショット

screenshot

Sold By Amazon拡張機能のCRXファイルをダウンロード

Sold By Amazon拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Ever wanted to just see products that are sold and shipped by Amazon? (Lots of promotions require items be sold and shipped by Amazon, for instance.)

Simply do a search on Amazon and then click this extension, and it will reload with items that are sold and shipped by Amazon.

Thanks for downloading!                    

拡張機能の基本情報

名前 Sold By Amazon Sold By Amazon
ID pjckdfjhkhlnohkhbkolbmpljgfcnmae
公式URL https://chromewebstore.google.com/detail/sold-by-amazon/pjckdfjhkhlnohkhbkolbmpljgfcnmae
説明 This extension reloads any Amazon search results with only products sold and shipped by Amazon.
ファイルサイズ 11.5 KB
インストール数 234
現在のバージョン 1.0
最終更新日 2023-07-05
公開日 2023-07-04
評価 4.33/5 合計 3 レビュー
開発者 phunglovescats
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Sold By Amazon",
    "version": "1.0",
    "description": "This extension reloads any Amazon search results with only products sold and shipped by Amazon.",
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*"
            ],
            "js": [
                ".\/scripts\/content.js"
            ]
        }
    ]
}