Purse: Shop with Bitcoin (Beta)

Get 5-33% off anything on Amazon with Bitcoin and Bitcoin Cash

Purse: Shop with Bitcoin (Beta)คืออะไร?

Purse: Shop with Bitcoin (Beta) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://purse.io และคุณลักษณะหลักของมันคือ "Get 5-33% off anything on Amazon with Bitcoin and Bitcoin Cash"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Purse: Shop with Bitcoin (Beta)

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

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

                        Source code: https://github.com/Purse/buywithbitcoin

Update: Nov. 2 2021 (1.5.4)
 - Adds more price matching selectors to render the widget on new amazon pages.

Update: Sept. 28 2021 (1.5.3)
 - Extension options can now be opened from within the popup window. (see sprocket icon on top right, or the "configure options" link when cart is empty)

Update: Sept. 20 2021 (1.5.2)
 - Add options menu to turn on/off shopper and earner features. Allows you to tailer the plugin to your particular use case of purse.

Update: Sept. 16 2021 (1.5.1)
 - Add Earner Tracking features so earners can now send tracking links directly to purse from the Amazon tracking pages.
Decrease asset sizes dramatically by targeting only chrome and firefox versions capable of fetch/async/await functions.


Update: Sept. 7 2021 (1.3.0)
 - Add Amazon.de support
 - UI components are more internationalized with supported currencies.
 - Fixed a few bugs with changing amazon product variations and adding to cart.
 - Removed unused Chrome Extension permissions.

Update: Nov. 4th 2019 (0.10.1)
- Fix cart loading errors

Update: Sept. 4th 2019 (0.10.0)
- Added basic support for Amazon.ca products
- Added basic support for Amazon.co.jp products

Update: Sept. 3rd 2019 (0.9.0)
- Added basic support for Amazon.co.uk products

The Purse: Shop button brings the power of the Purse.io marketplace directly to your Amazon shopping experience. While browsing products on Amazon simply click the Purse button, underneath the Amazon price, to add the item to your Purse list. When you’re ready to post your order using Bitcoin (or Bitcoin Cash), simply click the “Finalize” button in the Purse shop popup. Once we verify your order, an earner will purchase the items for you on Amazon and they’ll arrive right to your door!                    

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

ชื่อ Purse: Shop with Bitcoin (Beta) Purse: Shop with Bitcoin (Beta)
ID amdginnpaflghjbbdkfenpekaeifnpee
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/purse-shop-with-bitcoin-b/amdginnpaflghjbbdkfenpekaeifnpee
คำอธิบาย Get 5-33% off anything on Amazon with Bitcoin and Bitcoin Cash
ขนาดไฟล์ 374 KB
จำนวนการติดตั้ง 5,707
เวอร์ชันปัจจุบัน 1.5.4
อัปเดตครั้งล่าสุด 2021-11-03
วันที่เผยแพร่ 2019-11-04
คะแนน 4.00/5 รวมทั้งหมด 18 คะแนน
ผู้พัฒนา https://purse.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://purse.io
URL หน้าช่วยเหลือ https://support.purse.io/
URL หน้านโยบายความเป็นส่วนตัว https://purse.io/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Purse: Shop with Bitcoin (Beta)",
    "description": "Get 5-33% off anything on Amazon with Bitcoin and Bitcoin Cash",
    "version": "1.5.4",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "event.js"
        ],
        "persistent": true
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/purse.io\/*"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_title": "Purse: Shop with Bitcoin",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.co.jp\/*",
                "*:\/\/*.amazon.de\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "index.js"
            ]
        },
        {
            "matches": [
                "*:\/\/purse.io\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "index_purse.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}