RefundMe

We schedule reminders and pickups for your Amazon orders.

RefundMe क्या है?

RefundMe RefundMe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "We schedule reminders and pickups for your Amazon orders."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RefundMe एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
    }
}