Amazon Killer
Cherchez un livre sur Amazon et trouvez-le dans une vraie librairie
Was ist Amazon Killer?
Amazon Killer ist eine Chrome-Erweiterung, die von elliotlepers entwickelt wurde, und ihr Hauptmerkmal ist "Cherchez un livre sur Amazon et trouvez-le dans une vraie librairie".
Erweiterungsscreenshots
Amazon Killer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Amazon Killer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Amazon Killer |
ID | jndbieelpiaihakdaflepdbamcllgobd |
Offizielle URL | https://chromewebstore.google.com/detail/amazon-killer/jndbieelpiaihakdaflepdbamcllgobd |
Beschreibung | Cherchez un livre sur Amazon et trouvez-le dans une vraie librairie |
Dateigröße | 46.37 KB |
Installationsanzahl | 7,629 |
Aktuelle Version | 3.0.0 |
Letztes Update | 2020-11-11 |
Veröffentlichungsdatum | 2020-11-05 |
Bewertung | 4.22/5 Insgesamt 68 Bewertungen |
Entwickler | elliotlepers |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://amazonkiller.org |
Hilfeseite URL | https://github.com/elliotlepers/Amazon-Killer |
Unterstützte Sprachen | 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 } ] } |