Dam koto?

This extension adds a price tag in native currency selected beside the current price tags of amazon's price tags.

Dam koto?란 무엇입니까?

Dam koto?은(는) Khaled Mohammad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds a price tag in native currency selected beside the current price tags of amazon's price tags."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Dam koto? 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ever went to Amazon looking for things to buy or maybe to see how much a item costs compared to your country's price? Wasn't it painful and time consuming to convert those prices to your native currency? Had to pull the live currency rate and use a calculator to calculate the price in your native currency and repeat the same process each time you wanted to check a price.

Here is where "Dam Koto?" comes in. You just sit back and browse the items and let "Dam Koto?" do all the work for you. Dam koto adds converted price tags beside the Amazon's price tags. No need to worry anymore, you just enjoy your shopping. 

What's New in Dam Koto 3.0:
- Added support for Alibaba.com
- Added support for AliExpress.com

What's New in Dam Koto 3.1.1:
- Fixed Alibaba and Ali Express Bugs.
- Fixed issues with new amazon.com price tags. 

What's New in Dam Koto 3.1.2:
- Fixed issues with amazon's "Today's deal".                    

확장 프로그램 기본 정보

이름 Dam koto? Dam koto?
ID kmnpkanlafbaociiahmpkmoeilidomne
공식 URL https://chrome.google.com/webstore/detail/kmnpkanlafbaociiahmpkmoeilidomne
설명 This extension adds a price tag in native currency selected beside the current price tags of amazon's price tags.
파일 크기 326 KB
설치 횟수 18
현재 버전 3.1.2
최근 업데이트 2016-12-27
출시 날짜 2016-12-27
평점 4.67/5 총 12 개의 평점
개발자 Khaled Mohammad
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dam koto?",
    "description": "This extension adds a price tag in native currency selected beside the current price tags of amazon's price tags.",
    "version": "3.1.2",
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/main_icon_19.png",
            "38": "images\/main_icon_38.png"
        },
        "default_popup": "main_panel.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/main_icon_16.png",
        "48": "images\/main_icon_48.png",
        "128": "images\/main_icon_128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.aliexpress.com\/*",
                "https:\/\/www.alibaba.com\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "flags\/*.png",
        "css\/*.css",
        "fonts\/*.woff2",
        "images\/*.png"
    ]
}