Amazon Prices for Ireland
Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.
Amazon Prices for Ireland란 무엇입니까?
Amazon Prices for Ireland은(는) Adrian Smith에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate."입니다.
확장 프로그램 스크린샷
Amazon Prices for Ireland 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Even though amazon.co.uk ship to Ireland they don't price their products in Euro. It's not until we reach the very last page of the order process that we see the full Euro value of the order with Irish VAT applied. What this plugin does is update each product page with the equivalent Euro price. The GBP to EUR rate is retrieved in real time from Yahoo Finance. The Irish VAT rate of 23% is included except on books which are exempt from VAT. This extension is also available for Firefox as a Greasemonkey script http://userscripts.org/scripts/show/64262.
확장 프로그램 기본 정보
이름 | Amazon Prices for Ireland |
ID | ljbghemliajpgabhbaecbipkgngkoalf |
공식 URL | https://chromewebstore.google.com/detail/amazon-prices-for-ireland/ljbghemliajpgabhbaecbipkgngkoalf |
설명 | Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate. |
파일 크기 | 13.3 KB |
설치 횟수 | 371 |
현재 버전 | 1.8 |
최근 업데이트 | 2013-06-12 |
출시 날짜 | 2013-06-12 |
평점 | 2.81/5 총 26 개의 평점 |
개발자 | Adrian Smith |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://github.com/adrian/Amazon-Prices-for-Ireland-Chrome-Extension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Prices for Ireland", "version": "1.8", "description": "Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.", "icons": { "128": "images\/logo-128.png", "48": "images\/logo-48.png", "16": "images\/logo-16.png" }, "permissions": [ "http:\/\/download.finance.yahoo.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.co.uk\/*", "http:\/\/amazon.co.uk\/*", "https:\/\/amazon.co.uk\/*" ], "js": [ "contentscript.js" ] } ] } |