RefundMe

We schedule reminders and pickups for your Amazon orders.

RefundMeคืออะไร?

RefundMe เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RefundMe และคุณลักษณะหลักของมันคือ "We schedule reminders and pickups for your Amazon orders."

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

screenshot

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

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

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

                        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.                    

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

ชื่อ RefundMe RefundMe
ID nfeoamdpkbpaamidcmapoonhldehbjhc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/refundme/nfeoamdpkbpaamidcmapoonhldehbjhc
คำอธิบาย We schedule reminders and pickups for your Amazon orders.
ขนาดไฟล์ 50.57 KB
จำนวนการติดตั้ง 15
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2017-07-18
วันที่เผยแพร่ 2017-07-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา RefundMe
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://refundme.io
URL หน้าช่วยเหลือ http://www.refundme.io
ภาษาที่รองรับ 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
    }
}