Japan Wireless eSIM
13,850+
리뷰
#1 Trusted
Japan Wireless Brand
13,850+
리뷰
#1 Trusted
Japan Wireless Brand
모두(49)
저희 상품은 일본에서 검증되어 많은곳에서 계속해서 이용해주시고 계십니다.
휴대폰이 Japan Wireless eSIM과 호환되지 않는 경우 환불이 가능합니까?
안타깝게도 일본 무선 eSIM 구매 시 보험을 가입하지 않으셨다면, 휴대폰이 호환되지 않는 경우에도 환불이 불가능합니다. 호환 가능한 모든 기기 목록은 여기에서 확인하실 수 있습니다. 추가로 유의해야 할 사항은 다음과 같습니다: • 중국 본토에서 구매한 iPhone 기기는 eSIM 기능이 지원되지 않습니다. • 홍콩과 마카오에서 구매한 iPhone 기기(iPhone 13 Mini, iPhone 12 Mini, iPhone SE 2세대(2020), iPhone XS 제외)도 eSIM 기능이 지원되지 않습니다. • Google Pixel 3 / 3 XL 기기 중 호주, 대만, 일본에서 구매하거나 Sprint, Google Fi 이외의 미국 또는 캐나다 통신사를 통해 구매한 기기는 eSIM 기능이 지원되지 않습니다. • Google Pixel 3a / 3a XL 기기 중 동남아시아와 일본에서 구매하거나 Verizon 서비스를 이용하는 기기는 eSIM 기능이 지원되지 않습니다. • Huawei P40 Pro+ 기기는 eSIM 기능이 지원되지 않습니다. • Oppo Find X5 Lite 기기는 eSIM 기능이 지원되지 않습니다.
어떻게 환불을 받을 수 있습니까?
안타깝게도 eSIM 구매 시 보험을 구매하지 않으셨다면, 어떤 이유로든 환불이 불가능합니다. 따라서 iPhone이나 삼성 기기 등 사용하시는 기기가 데이터 전용 eSIM을 지원하고 일본에서 사용하기 위해 구매하신 것인지 사전에 반드시 확인하시기 바랍니다. 구매 장소에 따라 일부 기기는 호환되지 않을 수 있으니 호환성 페이지 를 참고해 주시기 바랍니다.
쿠폰이나 프로모션이 있습니까?
네, 저희는 계절별로 다양한 프로모션을 제공하고 있습니다. 홈페이지에서 계절별 캠페인을 확인해 보시기 바랍니다.
Setting up the widget on your website
This is a guide on setting up the widget. This widget has two components: 1. Widget Component: It shows the plans that are currently being featured. 2. Popup Component: It pops up when a plan is clicked. It shows the plan details and an order can be places from within the component. The installation is fairly simple as setting a script tag. The widget is attached to a div component that is passed when initiailizing it. The div component should be at least 250px or it might not show the full widget. const widget = new JapanWirelessWidget({ container: "#widget-container", }); widget.initialize(); widget.show(); The widget can be setup to use show custom plans by passing an array of plan ID's. const widget = new JapanWirelessWidget({ container: "#widget-container", plans: [11, 21, 39, 42, 15] }); widget.initialize(); widget.show(); The widget can be dislayed in several different languages. You can pass a language option when initiailizing the widget. The language codes are: 1. "de": German 2. "en": English 3. "es": Spanish 4. "fr": French 5. "it": Italian 6. "jp": Japanese 7. "kr": Korean 8. "ms": Malay 9. "tl": Tagalog (Filipino) 10. "vi": Vietnamese 11. "zh": Chinese (Simplified) 12. "zt": Chinese (Traditional) const widget = new JapanWirelessWidget({ container: "#widget-container", language: "jp" }); widget.initialize(); widget.show(); The prices of the plans in the widget can be dislayed in several different currencies. You can pass a currency param in the params option when initiailizing the widget. The currencies are: 1. "PHP": Philippine Peso 2. "JPY": Japanese Yen 3. "USD": US Dollar 4. "EUR": Euro 5. "AUD": Australian Dollar 6. "CAD": Canadian Dollar 7. "TWD": New Taiwan Dollar 8. "HKD": Hong Kong Dollar 9. "CNY": Chinese Yuan 10. "GBP": British Pound Sterling 11. "KRW": South Korean Won const widget = new JapanWirelessWidget({ container: "#widget-container", params: { currency: "EUR", }, }); widget.initialize(); widget.show(); Coupons and referral paramters for the widgets can be set using a params option. const widget = new JapanWirelessWidget({ container: "#widget-container", params: { via: "affilate", coupon: "Lo88GH97", }, }); widget.initialize(); widget.show(); For customizing the Widget Component, it's fairly simple. The container element can be styled for that purpose. For the Popup Component, there are certain customization that can be done to its responsiveness and styles. This example shows to style the popup element with border color and adds a responsive breakpoint. const widget = new JapanWirelessWidget({ container: "#widget", popupStyles: { xs: { height: "350px", width: "250px", }, border: "dashed red", borderColor: "red", }, closeButtonStyles: { borderRadius: "50%", }, }); widget.initialize(); widget.show(); The full API to the customization that can be done: Default styles: const DEFAULT = { breakpoints: { xs: "576px", sm: "768px", md: "992px", lg: "1200px", xl: "1408px", }, xs: { width: "350px", height: "450px" }, sm: { width: "350px", height: "450px" }, md: { width: "450px", height: "550px" }, lg: { width: "450px", height: "550px" }, xl: { width: "450px", height: "550px" }, boxShadow: "rgb(110 110 110 / 15%) -1px 1px 5px 3px", borderColor: "none", positioning: { anchor: "bottom-right", offsetX: 0, offsetY: 0, }, border: "none", borderTopLeftRadius: "5px", borderTopRightRadius: "5px", }; Full customizable API: interface PopupStyles { xs?: Dimension; sm?: Dimension; md?: Dimension; lg?: Dimension; xl?: Dimension; breakpoints?: { xs?: string; sm?: string; md?: string; lg?: string; xl?: string; }; positioning?: { anchor: "top-left" | "top-right" | "bottom-left" | "bottom-right"; offsetX: number; offsetY: number; }; borderColor?: string; border?: string; boxShadow?: string; } type Dimension = { width: string; height: string; }; Default styles: const DEFAULT = { position: "absolute", top: "14px", right: "14px", left: "auto", bottom: "auto", backgroundColor: "white", border: "none", borderRadius: "10%", width: "28px", height: "28px", cursor: "pointer", fontSize: "28px", lineHeight: "1", padding: "0", display: "flex", alignItems: "center", justifyContent: "center", boxShadow: "none", }; Customizable API: interface CloseButtonStyles { position?: string; top?: string; right?: string; left?: string; bottom?: string; backgroundColor?: string; border?: string; borderRadius?: string; width?: string; height?: string; cursor?: string; fontSize?: string; lineHeight?: string; padding?: string; display?: string; alignItems?: string; justifyContent?: string; boxShadow?: string; } The widget is attached below as a live demo: