Universal Automatic Currency Converter
Universal automatic currency converter for all web browsing needs
Τι είναι το Universal Automatic Currency Converter;
Το Universal Automatic Currency Converter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Baizey, και η κύρια λειτουργία του είναι "Universal automatic currency converter for all web browsing needs".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Universal Automatic Currency Converter
Λήψη αρχείων επέκτασης Universal Automatic Currency Converter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension provides for all your conversion desires. The primary focuses being: - Intelligent conversion and detection of currencies - Automatic and non-intrusive in-site conversions - Always access to converter no matter where you are - Simple UI, yet extensive customization General features - Support for more than 170 currencies and their symbolic equivalents, getting rates from fixer.io and openexchangerates.org - Intelligent currency detection, catching everything for most if not all symbols, $, £ and € to EUR, USD, GBP to 'US $' - Non-intrusive in-site replacement, will never break any website functionality - Control exactly how your prices are displayed, anything from $100 or 100 dollars to 100 schmekels - Intelligent localization of multi-currency symbols like $ and kr - Optional highlighting of prices being converted on pages - Flip quickly between converted prices and original using either left-clicking, a self chosen shortcut or via the UI - Mini converter between currencies in the popup window - Blacklisting and whitelisting of websites for conversion Changelog https://github.com/Baizey/UniversalAutomaticCurrencyConverter This extension/add-on is also available for... Chrome: https://chrome.google.com/webstore/detail/universal-automatic-curre/hbjagjepkeogombomfeefdmjnclgojli Firefox: https://addons.mozilla.org/en-US/firefox/addon/ua-currency-converter/ Edge: https://microsoftedge.microsoft.com/addons/detail/universal-automatic-curre/aeejpkkbcpndcbnmhifkdeabgjafghfn
Βασικές Πληροφορίες Επέκτασης
Όνομα | Universal Automatic Currency Converter |
ID | hbjagjepkeogombomfeefdmjnclgojli |
Επίσημο URL | https://chromewebstore.google.com/detail/universal-automatic-curre/hbjagjepkeogombomfeefdmjnclgojli |
Περιγραφή | Universal automatic currency converter for all web browsing needs |
Μέγεθος Αρχείου | 151 KB |
Αριθμός Εγκαταστάσεων | 4,116 |
Τρέχουσα Έκδοση | 5.0.6 |
Τελευταία Ενημέρωση | 2023-05-14 |
Ημερομηνία Δημοσίευσης | 2020-02-12 |
Αξιολόγηση | 4.46/5 Συνολικά 78 Αξιολογήσεις |
Προγραμματιστής | Baizey |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Baizey", "name": "Universal Automatic Currency Converter", "description": "Universal automatic currency converter for all web browsing needs", "manifest_version": 3, "version": "5.0.6", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_title": "UA Currency Converter", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "shared.css", "content.css" ] } ], "options_ui": { "page": "options.html" }, "host_permissions": [ "https:\/\/uacc-bff-api.azurewebsites.net\/*" ], "permissions": [ "contextMenus", "activeTab", "storage" ] } |