Product Compare
This extension allows you to quickly compare products on Amazon
Τι είναι το Product Compare;
Το Product Compare είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Product Compare, και η κύρια λειτουργία του είναι "This extension allows you to quickly compare products on Amazon".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Product Compare
Λήψη αρχείων επέκτασης Product Compare σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Product Compare allows you to compare multiple Amazon products at the same time. We pull data directly from Amazon's database, showing you more information than ever before! No login required, fully anonymous. Using the product is easy: 1) Right-click on any product link in Amazon 2) Choose "Add to Product Compare" 3) Click the Product Compare icon in the browser header to launch a full-screen comparison experience. Bonus Features: * “Compare” buttons added to product pages for easy comparison. * Popout comparison tool will live update as you add products to Product Compare. Great for dual monitors! * See specs and details not normally available in Amazon! Please email [email protected] for any bugs/features. We are always excited to chat with our users! -- Product Updates -- Update 0.0.7: * Added “Buy Now” link. Update: 0.0.6: * New UI with better sticky headers. * Improved performance Update: 0.0.5: * Broadened right click ability Update: 0.0.4: * Added loading indicator to badge * Fixed issue with Kindle products not loading. Update: 0.0.3: * Added Right-click menu. Now, right-click on any link in Amazon to see an "Add to Product Compare" option. This allows you to quickly add any item to your compare list. -- Affiliate Disclosure -- By partnering with Amazon, we are able to pay for development and server resources, keeping Product Compare free! When you click a link from inside Product Compare, and you end up purchasing the product, we are credited with helping to create a sale. This adds no cost to you, and allows Amazon to compensate us for helping create sales. If you have any questions, please feel free to email [email protected].
Βασικές Πληροφορίες Επέκτασης
Όνομα | Product Compare |
ID | neifoffjlldjmaecdcohjdfdnbdbkean |
Επίσημο URL | https://chromewebstore.google.com/detail/product-compare/neifoffjlldjmaecdcohjdfdnbdbkean |
Περιγραφή | This extension allows you to quickly compare products on Amazon |
Μέγεθος Αρχείου | 2.53 MB |
Αριθμός Εγκαταστάσεων | 315 |
Τρέχουσα Έκδοση | 0.0.7 |
Τελευταία Ενημέρωση | 2017-02-06 |
Ημερομηνία Δημοσίευσης | 2017-02-06 |
Αξιολόγηση | 1.50/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | Product Compare |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Product Compare", "description": "This extension allows you to quickly compare products on Amazon", "version": "0.0.7", "permissions": [ "storage", "contextMenus", "https:\/\/y903nd11c4.execute-api.us-west-1.amazonaws.com\/prod\/*", "https:\/\/www.amazon.com\/*" ], "browser_action": { "default_icon": ".\/icons\/product_compare_logo_small.png" }, "background": { "scripts": [ ".\/background_bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/smile.amazon.com\/*", "http:\/\/www.amazon.com\/*", "http:\/\/smile.amazon.com\/*" ], "css": [ ".\/content_style.css" ], "js": [ ".\/content_bundle.js" ] } ], "icons": { "16": ".\/icons\/product_compare_logo_16.png", "32": ".\/icons\/product_compare_logo_32.png", "48": ".\/icons\/product_compare_logo_48.png", "128": ".\/icons\/product_compare_logo_128.png" } } |