Sold By Amazon

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

ما هو Sold By Amazon؟

Sold By Amazon هو إضافة Chrome تم تطويرها بواسطة phunglovescats، والميزة الرئيسية لها هي "This extension reloads any Amazon search results with only products sold and shipped by Amazon.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Sold By Amazon

قم بتنزيل ملفات الامتداد Sold By Amazon بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [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"
            ]
        }
    ]
}