Amazon Killer
Cherchez un livre sur Amazon et trouvez-le dans une vraie librairie
ما هو Amazon Killer؟
Amazon Killer هو إضافة Chrome تم تطويرها بواسطة elliotlepers، والميزة الرئيسية لها هي "Cherchez un livre sur Amazon et trouvez-le dans une vraie librairie".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Amazon Killer
قم بتنزيل ملفات الامتداد Amazon Killer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Par Elliot Lepers Extension Chrome et Firefox pour chercher un livre sur Amazon et l'acheter dans une vraie librairie. L'extension récupère le numéro ISBN du livre que vous regardez et le cherche dans plusieurs bases de données de librairies indépendantes.
معلومات أساسية عن التمديد
الاسم | Amazon Killer |
ID | jndbieelpiaihakdaflepdbamcllgobd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/amazon-killer/jndbieelpiaihakdaflepdbamcllgobd |
الوصف | Cherchez un livre sur Amazon et trouvez-le dans une vraie librairie |
حجم الملف | 46.37 KB |
عدد التثبيتات | 7,629 |
النسخة الحالية | 3.0.0 |
آخر تحديث | 2020-11-11 |
تاريخ النشر | 2020-11-05 |
تقييم | 4.22/5 مجموع تقييمات 68 |
المطور | elliotlepers |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://amazonkiller.org |
عنوان صفحة المساعدة | https://github.com/elliotlepers/Amazon-Killer |
اللغات المدعومة | en,fr,es,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Killer", "version": "3.0.0", "default_locale": "fr", "web_accessible_resources": [ "icons\/*", "images\/*" ], "icons": { "32": "icons\/favicon-48.png", "48": "icons\/favicon-48.png", "96": "icons\/favicon-96.png", "128": "icons\/favicon-128.png" }, "description": "Cherchez un livre sur Amazon et trouvez-le dans une vraie librairie", "homepage_url": "https:\/\/github.com\/elliotlepers\/Amazon-Killer", "short_name": "amazon-killer", "content_security_policy": "script-src 'self'; object-src 'self'", "author": "lowwebtech", "minimum_chrome_version": "49", "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.com.mx\/*", "*:\/\/*.amazon.co.jp\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.es\/*", "*:\/\/*.amazon.cn\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.com.br\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.com.au\/*" ], "js": [ "content_script.js" ], "css": [ "content_script.css" ], "run_at": "document_start", "all_frames": false } ] } |