Shop Safe
A chrome extension that helps to identify where an amazon product is originated from.
ما هو Shop Safe؟
Shop Safe هو إضافة Chrome تم تطويرها بواسطة Shop Safe، والميزة الرئيسية لها هي "A chrome extension that helps to identify where an amazon product is originated from.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Shop Safe
قم بتنزيل ملفات الامتداد Shop Safe بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is an extension which provides the country information of an amazon product on the product detail page.
معلومات أساسية عن التمديد
الاسم | Shop Safe |
ID | helhdfggaejjdpkfkbpfbnchljaobhbp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/shop-safe/helhdfggaejjdpkfkbpfbnchljaobhbp |
الوصف | A chrome extension that helps to identify where an amazon product is originated from. |
حجم الملف | 1.01 MB |
عدد التثبيتات | 182 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2023-11-07 |
تاريخ النشر | 2023-11-06 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | Shop Safe |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://cromeprivacypolicy.s3.amazonaws.com/safeshop-privacypolicy.html |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension that helps to identify where an amazon product is originated from.", "version": "1.0.0", "manifest_version": 3, "name": "Shop Safe", "icons": { "192": ".\/assets\/icons\/icon-192.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*\/dp\/*", "https:\/\/www.amazon.com\/dp\/*" ], "js": [ "content_script.js" ], "css": [ "content.styles.css" ], "run_at": "document_end" } ] } |