Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Τι είναι το Amazon Price Per Unit;
Το Amazon Price Per Unit είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον desmondvehar, και η κύρια λειτουργία του είναι "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Amazon Price Per Unit
Λήψη αρχείων επέκτασης Amazon Price Per Unit σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
If you are a savvy shopper that loves to get the best deals this is the extension for you! This extension will show the price for unit next to items where it is not currently shown. Ex: $10.99 ($0.37/Gram) Having the price per unit will allow you to better compare products so you can get the best deals!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
Επίσημο URL | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Περιγραφή | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
Μέγεθος Αρχείου | 38.04 KB |
Αριθμός Εγκαταστάσεων | 172 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2017-07-17 |
Ημερομηνία Δημοσίευσης | 2017-07-16 |
Αξιολόγηση | 2.33/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | desmondvehar |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://www.amazon.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/dvehar/amazon-price-per-unit |
Υποστηριζόμενες Γλώσσες | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Price Per Unit", "short_name": "Amazon PPU", "description": "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.", "version": "1.1", "permissions": [ "http:\/\/*.amazon.com\/", "https:\/\/*.amazon.com\/" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "icons": { "128": "Amazon PPU.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.amazon.com\/*" ], "js": [ "jquery.min.js", "myscript.js" ] } ], "page_action": [] } |