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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}