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.".
Снимки экрана расширения
Скачать файл CRX расширения Sold By Amazon
Скачайте файлы расширений 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 |
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" ] } ] } |