Universal Automatic Currency Converter

Universal automatic currency converter for all web browsing needs

Universal Automatic Currency Converter란 무엇입니까?

Universal Automatic Currency Converter은(는) Baizey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Universal automatic currency converter for all web browsing needs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Universal Automatic Currency Converter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}