RefundMe
We schedule reminders and pickups for your Amazon orders.
Wat is RefundMe?
RefundMe is een Chrome-extensie ontwikkeld door RefundMe, en de belangrijkste functie is "We schedule reminders and pickups for your Amazon orders.".
Extensie Screenshots
Download het CRX-bestand van de extensie RefundMe
Download RefundMe-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | nfeoamdpkbpaamidcmapoonhldehbjhc |
| Officiële URL | https://chromewebstore.google.com/detail/refundme/nfeoamdpkbpaamidcmapoonhldehbjhc |
| Beschrijving | We schedule reminders and pickups for your Amazon orders. |
| Bestandsgrootte | 50.57 KB |
| Aantal Installaties | 15 |
| Huidige Versie | 1.8 |
| Laatst Bijgewerkt | 2017-07-18 |
| Publicatiedatum | 2017-07-18 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | RefundMe |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://refundme.io |
| Help Pagina-URL | http://www.refundme.io |
| Ondersteunde Talen | 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
}
} | |