Does Amazon Ship to ...?
Button to check if Amazon items could be shipped to your country. The button appears on Amazon product page only.
Does Amazon Ship to ...?란 무엇입니까?
Does Amazon Ship to ...?은(는) aliaksandr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Button to check if Amazon items could be shipped to your country. The button appears on Amazon product page only."입니다.
확장 프로그램 스크린샷
Does Amazon Ship to ...? 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Press the button "Check if the item could be shipped to your country" and see results table with: - Seller name and link to the related product detail page - Price of the product - Seller's shipping rate of the product Click on the suitable link in the table to open the related product detail page and make an order. Works on Amazon sites: .com, .co.uk, .de, .fr, .it, .es, .ca, .com.mx, .com.au There are cases when it is not possible to find a suitable option on the Amazon site. Use the button "Find Similar ..." to open related Google search results of eBay, Aliexpress or Gearbest products. The same "Find Similar..." button appears on eBay, Aliexpress and Gearbest product pages.
확장 프로그램 기본 정보
이름 | Does Amazon Ship to ...? |
ID | gpnamfpkffldfnlkofbbebcndfdkclpc |
공식 URL | https://chromewebstore.google.com/detail/does-amazon-ship-to/gpnamfpkffldfnlkofbbebcndfdkclpc |
설명 | Button to check if Amazon items could be shipped to your country. The button appears on Amazon product page only. |
파일 크기 | 303 KB |
설치 횟수 | 10,000 |
현재 버전 | 6.1.7 |
최근 업데이트 | 2022-09-02 |
출시 날짜 | 2020-05-21 |
평점 | 3.93/5 총 271 개의 평점 |
개발자 | aliaksandr |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://resourcefulman.net/ |
개인정보 보호 정책 페이지 URL | https://ad.resourcefulman.net/Privacy-Policy.txt |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Does Amazon Ship to ...?", "version": "6.1.7", "description": "Button to check if Amazon items could be shipped to your country. The button appears on Amazon product page only.", "icons": { "48": "assets\/icon.png", "128": "assets\/icon_128.png" }, "optional_permissions": [ "*:\/\/*.gearbest.com\/*", "*:\/\/*.ebay.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.es\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.com.mx\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.aliexpress.com\/*", "*:\/\/*.aliexpress.ru\/*" ], "js": [ "assets\/scripts.js" ], "run_at": "document_end", "all_frames": true } ], "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "app.js", "styles.bundle.css", "assets\/error.icon.png", "assets\/good.icon.png", "assets\/jquery-3.2.1.min.js", "assets\/loading.gif" ], "background": { "persistent": true, "scripts": [ "assets\/background.js" ] } } |