RefundMe

We schedule reminders and pickups for your Amazon orders.

RefundMe là gì?

RefundMe là một tiện ích mở rộng Chrome được phát triển bởi RefundMe, và tính năng chính của nó là "We schedule reminders and pickups for your Amazon orders.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng RefundMe

Tải xuống các tệp mở rộng RefundMe dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        When you check out on Amazon, we'll add a return reminder button. Click that and we'll remind you to return your order. We can also schedule pickups and print return labels.

You'll never miss a return deadline again, and no more lugging boxes to the UPS store.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên RefundMe RefundMe
ID nfeoamdpkbpaamidcmapoonhldehbjhc
URL Chính Thức https://chromewebstore.google.com/detail/refundme/nfeoamdpkbpaamidcmapoonhldehbjhc
Mô tả We schedule reminders and pickups for your Amazon orders.
Kích Thước Tệp 50.57 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 1.8
Cập Nhật Lần Cuối 2017-07-18
Ngày Phát Hành 2017-07-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển RefundMe
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://refundme.io
URL Trang Trợ Giúp http://www.refundme.io
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RefundMe",
    "description": "We schedule reminders and pickups for your Amazon orders.",
    "version": "1.8",
    "icons": {
        "16": "icon-sm.png",
        "48": "icon-md.png",
        "128": "icon-lg.png"
    },
    "browser_action": {
        "default_icon": "icon-md.png",
        "default_title": "RefundMe",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*"
            ],
            "css": [
                "custom\/mystyles.css"
            ],
            "js": [
                "custom\/jquery-3.2.1.min.js",
                "custom\/myscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "custom\/eventPage.js"
        ],
        "persistent": false
    }
}