eShopAUNZ

Enables Web Based eShop Purchases for AU and NZ MyNintendo accounts

eShopAUNZคืออะไร?

eShopAUNZ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dunnymeister และคุณลักษณะหลักของมันคือ "Enables Web Based eShop Purchases for AU and NZ MyNintendo accounts"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย eShopAUNZ

ดาวน์โหลดไฟล์ส่วนขยาย eShopAUNZ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension will hook into any page with a purchase link on Nintendo.co.uk and add a button that will take you to Nintendo's purchase page even if you're not using a UK Nintendo Account.

It's handy for purchasing content while at work because your Switch will start downloading it ready for when you get home!

========================
Known Issues/Limitations
========================
+ The extension will show you the purchase button even if the item isn't available in AU/NZ. However, even if you click the button you won't be able to purchase it because Nintendo does check that your country can purchase the software.
+ The extension does not yet support the purchase of DLC content.
+ Games such as Splatoon 2 which have a different region released in Australia to the UK can't be purchased via this extension.

========================
Release Notes
========================

Ver.0.15
Changed the button destination from the purchase page to the eShop product description to allow users to purchase DLC/add-on content. Credit to @Vook64 for showing me this page exists!

Ver.0.14
Added a link to the nintendo.co.uk eShop when you click the shop icon.

Ver.0.13
No longer spinning forever on game pages that don't show the price sidebar immediately

========================
Disclaimer
========================
This is a very basic Chrome Extension I wrote over two lunch breaks after reading an article on https://www.vooks.net/

It's not fancy and needs to jump through a couple of hoops to inject content into a web page, so it's likely to stop working at any point. If that happens you can contact me (@Dunnymeister) and I'll see if it's worth fixing. Or if you're technically minded feel free to fix it yourself and make a pull request! The repo is on GitHub at https://github.com/Dunnymeister/eShopAUNZ.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ eShopAUNZ eShopAUNZ
ID dkfdmigacnaoimfhipbnfnnifamgflie
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/eshopaunz/dkfdmigacnaoimfhipbnfnnifamgflie
คำอธิบาย Enables Web Based eShop Purchases for AU and NZ MyNintendo accounts
ขนาดไฟล์ 219 KB
จำนวนการติดตั้ง 399
เวอร์ชันปัจจุบัน 0.15
อัปเดตครั้งล่าสุด 2019-05-09
วันที่เผยแพร่ 2019-05-09
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Dunnymeister
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "eShopAUNZ",
    "description": "Enables Web Based eShop Purchases for AU and NZ MyNintendo accounts",
    "version": "0.15",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "https:\/\/www.nintendo.co.uk\/*"
    ],
    "web_accessible_resources": [
        "js\/inject.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.nintendo.co.uk\/*"
            ],
            "css": [
                "\/css\/eshopaunz.css"
            ],
            "js": [
                "\/js\/jquery-3.2.1.min.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.nintendo.co.uk\/*"
            ],
            "js": [
                "\/js\/popup.js"
            ]
        }
    ]
}