Amazon ASIN Checker
Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can…
ما هو Amazon ASIN Checker؟
Amazon ASIN Checker هو إضافة Chrome تم تطويرها بواسطة https://extensionsworld.com، والميزة الرئيسية لها هي "Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Amazon ASIN Checker
قم بتنزيل ملفات الامتداد Amazon ASIN Checker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can compare new and old results
معلومات أساسية عن التمديد
الاسم | Amazon ASIN Checker |
ID | jhmikeeececplgomdjnahelcfoekohpo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/amazon-asin-checker/jhmikeeececplgomdjnahelcfoekohpo |
الوصف | Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can… |
حجم الملف | 56.54 KB |
عدد التثبيتات | 25 |
النسخة الحالية | 0.0.3 |
آخر تحديث | 2021-02-16 |
تاريخ النشر | 2021-02-06 |
المطور | https://extensionsworld.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://extensionsworld.com/contact |
عنوان صفحة سياسة الخصوصية | https://extensionsworld.com/legal |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon ASIN Checker", "permissions": [ "https:\/\/*.amazon.co.uk\/*", "https:\/\/*.amazon.com\/*", "https:\/\/*.amazon.de\/*", "https:\/\/*.amazon.ca\/*", "storage" ], "version": "0.0.3", "background": { "scripts": [ "js\/utils.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.amazon.co.uk\/*", "https:\/\/*.amazon.com\/*", "https:\/\/*.amazon.de\/*", "https:\/\/*.amazon.ca\/*" ], "js": [ "js\/utils.js", "js\/index.js" ] } ], "icons": { "128": "icon128.png", "64": "icon64.png", "32": "icon32.png" }, "browser_action": { "default_icon": { "128": "icon128.png", "64": "icon64.png", "32": "icon32.png" }, "default_title": "Amazon ASIN Checker", "default_popup": "html\/index.html" }, "web_accessible_resources": [ "js\/injectable.js", "html\/redirectFB.html" ] } |