RefundMe

We schedule reminders and pickups for your Amazon orders.

Cos'è RefundMe?

RefundMe è un'estensione di Chrome sviluppata da RefundMe, e la sua funzione principale è "We schedule reminders and pickups for your Amazon orders.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione RefundMe

Scarica i file di estensione RefundMe in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome RefundMe RefundMe
ID nfeoamdpkbpaamidcmapoonhldehbjhc
URL Ufficiale https://chromewebstore.google.com/detail/refundme/nfeoamdpkbpaamidcmapoonhldehbjhc
Descrizione We schedule reminders and pickups for your Amazon orders.
Dimensione del File 50.57 KB
Conteggio Installazioni 15
Versione Corrente 1.8
Ultimo Aggiornamento 2017-07-18
Data di Pubblicazione 2017-07-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore RefundMe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://refundme.io
URL della Pagina di Aiuto http://www.refundme.io
Lingue Supportate 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
    }
}